Method | Description | |
---|---|---|
DeleteBlog ( Blog blog ) : void |
Deletes a Blog from the database
|
|
DeleteBlogRollItem ( BlogRollItem blogRollItem ) : void |
Deletes a BlogRoll from the database
|
|
DeleteBlogStorageContainer ( Blog blog ) : bool |
Deletes the blog's storage container.
|
|
DeleteCategory ( Category category ) : void |
Deletes a category from the database
|
|
DeletePackage ( string packageId ) : void |
Should delete package and remove all package files
|
|
DeletePage ( Page page ) : void |
Deletes a page from the database
|
|
DeletePost ( Post post ) : void |
Deletes a post in the database
|
|
DeleteProfile ( AuthorProfile profile ) : void |
Remove AuthorProfile from database
|
|
DeleteQuickNote ( System.Guid noteId ) : void |
Delete quick note
|
|
FillBlogRoll ( ) : List |
Gets all BlogRolls in database
|
|
FillBlogs ( ) : List |
Gets all Blogs in database
|
|
FillCategories ( ) : List |
Gets all categories in database
|
|
FillPackageFiles ( string packageId ) : List |
Gets list of files for installed package
|
|
FillPackages ( ) : List |
Gets all installed from gallery packages
|
|
FillPages ( ) : List |
Gets all pages in database
|
|
FillPosts ( ) : List |
Gets all post from the database
|
|
FillProfiles ( ) : List |
Return collection for AuthorProfiles from database
|
|
FillQuickNotes ( string userId ) : List |
Fill quick notes
|
|
FillQuickSettings ( string userId ) : List |
Fill quick settings
|
|
FillReferrers ( ) : List |
Gets all Referrers from the database.
|
|
FillRights ( ) : IEnumerable |
||
Initialize ( string name, |
Initializes the provider
|
|
InsertBlog ( Blog blog ) : void |
Adds a new blog to the database.
|
|
InsertBlogRollItem ( BlogRollItem blogRollItem ) : void |
Adds a new BlogRoll to the database.
|
|
InsertCategory ( Category category ) : void |
Adds a new category to the database
|
|
InsertPage ( Page page ) : void |
Adds a page to the database
|
|
InsertPost ( Post post ) : void |
Adds a new post to database
|
|
InsertProfile ( AuthorProfile profile ) : void |
Adds AuthorProfile to database
|
|
InsertReferrer ( Referrer referrer ) : void |
Adds a new Referrer to the database.
|
|
LoadFromDataStore ( ExtensionType extensionType, string extensionId ) : object |
Load user data from DataStore
|
|
LoadPingServices ( ) : |
Gets the PingServices from the database
|
|
LoadSettings ( ) : |
Gets the settings from the database
|
|
LoadStopWords ( ) : |
Get stopwords from the database
|
|
RemoveFromDataStore ( ExtensionType extensionType, string extensionId ) : void |
Deletes an item from the dataStore
|
|
SavePackage ( BlogEngine.Core.Packaging.InstalledPackage package ) : void |
Log of all installed packages
|
|
SavePackageFiles ( List |
Log of all files for installed package
|
|
SavePingServices ( |
Saves the PingServices to the database
|
|
SaveQuickNote ( |
Save quick note
|
|
SaveQuickSetting ( |
Save quick setting
|
|
SaveRights ( IEnumerable |
||
SaveSettings ( |
Saves the settings to the database
|
|
SaveToDataStore ( ExtensionType extensionType, string extensionId, object settings ) : void |
Save to DataStore
|
|
SelectBlog ( System.Guid id ) : Blog |
Gets a Blog based on a Guid.
|
|
SelectBlogRollItem ( System.Guid id ) : BlogRollItem |
Gets a BlogRoll based on a Guid.
|
|
SelectCategory ( System.Guid id ) : Category |
Returns a category
|
|
SelectPage ( System.Guid id ) : Page |
Returns a page for given ID
|
|
SelectPost ( System.Guid id ) : Post |
Returns a Post based on Id.
|
|
SelectProfile ( string id ) : AuthorProfile |
Loads AuthorProfile from database
|
|
SelectReferrer ( System.Guid id ) : Referrer |
Gets a Referrer based on an Id.
|
|
SetupBlogFromExistingBlog ( Blog existingBlog, Blog newBlog ) : bool |
Sets up the required storage files/tables for a new Blog instance, from an existing blog instance.
|
|
UpdateBlog ( Blog blog ) : void |
Saves an existing Blog to the database
|
|
UpdateBlogRollItem ( BlogRollItem blogRollItem ) : void |
Saves an existing BlogRoll to the database
|
|
UpdateCategory ( Category category ) : void |
Saves an existing category to the database
|
|
UpdatePage ( Page page ) : void |
Saves an existing page in the database
|
|
UpdatePost ( Post post ) : void |
Saves and existing post in the database
|
|
UpdateProfile ( AuthorProfile profile ) : void |
Updates AuthorProfile to database
|
|
UpdateReferrer ( Referrer referrer ) : void |
Saves an existing Referrer to the database.
|
Method | Description | |
---|---|---|
AddBlogParametersToCommand ( Blog blog, |
Adds blog parameters to command.
|
|
AddBlogRollParametersToCommand ( BlogRollItem blogRollItem, |
The add blog roll parameters to command.
|
|
AddReferrersParametersToCommand ( Referrer referrer, |
The add referrers parameters to command.
|
|
CreateConnection ( ) : |
Creates a new DbConnectionHelper for this DbBlogProvider instance.
|
|
DeleteOldReferrers ( ) : void |
The delete old referrers.
|
|
FormatParamName ( string parameterName ) : string |
Returns a formatted parameter name to include this DbBlogProvider instance's paramPrefix.
|
|
UpdateCategories ( Post post, |
The update categories.
|
|
UpdateComments ( Post post, |
The update comments.
|
|
UpdateNotify ( Post post, |
The update notify.
|
|
UpdateTags ( Post post, |
The update tags.
|
public DeleteBlog ( Blog blog ) : void | ||
blog | Blog | /// The blog. /// |
return | void |
public DeleteBlogRollItem ( BlogRollItem blogRollItem ) : void | ||
blogRollItem | BlogRollItem | /// The blog Roll Item. /// |
return | void |
public DeleteBlogStorageContainer ( Blog blog ) : bool | ||
blog | Blog | /// The blog. /// |
return | bool |
public DeleteCategory ( Category category ) : void | ||
category | Category | /// category to be removed /// |
return | void |
public DeletePackage ( string packageId ) : void | ||
packageId | string | Package ID |
return | void |
public DeletePage ( Page page ) : void | ||
page | Page | /// page to be deleted /// |
return | void |
public DeletePost ( Post post ) : void | ||
post | Post | /// post to delete /// |
return | void |
public DeleteProfile ( AuthorProfile profile ) : void | ||
profile | AuthorProfile | An AuthorProfile. |
return | void |
public DeleteQuickNote ( System.Guid noteId ) : void | ||
noteId | System.Guid | Note ID |
return | void |
public FillPackageFiles ( string packageId ) : List |
||
packageId | string | Package ID |
return | List |
public FillQuickNotes ( string userId ) : List |
||
userId | string | User ID |
return | List |
public FillQuickSettings ( string userId ) : List |
||
userId | string | User ID |
return | List |
public FillRights ( ) : IEnumerable |
||
return | IEnumerable |
public Initialize ( string name, |
||
name | string | /// Configuration name /// |
config | /// Configuration settings /// | |
return | void |
public InsertBlog ( Blog blog ) : void | ||
blog | Blog | /// The blog. /// |
return | void |
public InsertBlogRollItem ( BlogRollItem blogRollItem ) : void | ||
blogRollItem | BlogRollItem | /// The blog Roll Item. /// |
return | void |
public InsertCategory ( Category category ) : void | ||
category | Category | /// category to add /// |
return | void |
public InsertPage ( Page page ) : void | ||
page | Page | /// page to be added /// |
return | void |
public InsertPost ( Post post ) : void | ||
post | Post | /// The new post. /// |
return | void |
public InsertProfile ( AuthorProfile profile ) : void | ||
profile | AuthorProfile | An AuthorProfile. |
return | void |
public InsertReferrer ( Referrer referrer ) : void | ||
referrer | Referrer | /// Referrer to add. /// |
return | void |
public LoadFromDataStore ( ExtensionType extensionType, string extensionId ) : object | ||
extensionType | ExtensionType | /// type of info /// |
extensionId | string | /// id of info /// |
return | object |
public LoadPingServices ( ) : |
||
return |
public LoadSettings ( ) : |
||
return |
public LoadStopWords ( ) : |
||
return |
public RemoveFromDataStore ( ExtensionType extensionType, string extensionId ) : void | ||
extensionType | ExtensionType | /// type of item /// |
extensionId | string | /// id of item /// |
return | void |
public SavePackage ( BlogEngine.Core.Packaging.InstalledPackage package ) : void | ||
package | BlogEngine.Core.Packaging.InstalledPackage | Intalled package |
return | void |
public SavePackageFiles ( List |
||
packageFiles | List |
List of intalled package files |
return | void |
public SavePingServices ( |
||
services | /// collection of PingServices /// | |
return | void |
public SaveQuickNote ( |
||
note | Quick note | |
return | void |
public SaveQuickSetting ( |
||
setting | Quick setting | |
return | void |
public SaveRights ( IEnumerable |
||
rights | IEnumerable |
|
return | void |
public SaveSettings ( |
||
settings | /// dictionary of settings /// | |
return | void |
public SaveToDataStore ( ExtensionType extensionType, string extensionId, object settings ) : void | ||
extensionType | ExtensionType | /// type of info /// |
extensionId | string | /// id of info /// |
settings | object | /// data of info /// |
return | void |
public SelectBlog ( System.Guid id ) : Blog | ||
id | System.Guid | /// The Blog's Guid. /// |
return | Blog |
public SelectBlogRollItem ( System.Guid id ) : BlogRollItem | ||
id | System.Guid | /// The BlogRoll's Guid. /// |
return | BlogRollItem |
public SelectCategory ( System.Guid id ) : Category | ||
id | System.Guid | Id of category to return |
return | Category |
public SelectPage ( System.Guid id ) : Page | ||
id | System.Guid | /// ID of page to return /// |
return | Page |
public SelectPost ( System.Guid id ) : Post | ||
id | System.Guid | /// The Post ID. /// |
return | Post |
public SelectProfile ( string id ) : AuthorProfile | ||
id | string | The user name. |
return | AuthorProfile |
public SelectReferrer ( System.Guid id ) : Referrer | ||
id | System.Guid | /// The Referrer Id. /// |
return | Referrer |
public SetupBlogFromExistingBlog ( Blog existingBlog, Blog newBlog ) : bool | ||
existingBlog | Blog | /// The existing blog to copy from. /// |
newBlog | Blog | /// The new blog to copy to. /// |
return | bool |
public UpdateBlog ( Blog blog ) : void | ||
blog | Blog | /// Blog to be saved /// |
return | void |
public UpdateBlogRollItem ( BlogRollItem blogRollItem ) : void | ||
blogRollItem | BlogRollItem | /// BlogRoll to be saved /// |
return | void |
public UpdateCategory ( Category category ) : void | ||
category | Category | /// category to be saved /// |
return | void |
public UpdatePage ( Page page ) : void | ||
page | Page | /// page to be saved /// |
return | void |
public UpdatePost ( Post post ) : void | ||
post | Post | /// post to be saved /// |
return | void |
public UpdateProfile ( AuthorProfile profile ) : void | ||
profile | AuthorProfile | /// An AuthorProfile. /// |
return | void |
public UpdateReferrer ( Referrer referrer ) : void | ||
referrer | Referrer | /// Referrer to be saved. /// |
return | void |