Class SettingsCategoryInfoProvider
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Class providing Settings category management.
[ProviderInterface(typeof(ISettingsCategoryInfoProvider))]
public class SettingsCategoryInfoProvider : AbstractInfoProvider<SettingsCategoryInfo, SettingsCategoryInfoProvider>, IInfoProvider, ICustomizableProvider, IBulkOperationProvider, IWebFarmProvider, IInfoValidator<SettingsCategoryInfo>, IInfoByGuidProvider<SettingsCategoryInfo>, IBulkInfoProvider<SettingsCategoryInfo>, IRelatedObjectCountProvider, ISettingsCategoryInfoProvider, IInfoProvider<SettingsCategoryInfo>, IInfoByIdProvider<SettingsCategoryInfo>, IInfoByNameProvider<SettingsCategoryInfo>
- Inheritance
-
objectAbstractInfoProvider<SettingsCategoryInfo, SettingsCategoryInfoProvider, ObjectQuery<SettingsCategoryInfo>>SettingsCategoryInfoProvider
- Implements
- Inherited Members
- Extension Methods
Constructors
SettingsCategoryInfoProvider()
Constructor
public SettingsCategoryInfoProvider()
Fields
mRootCategory
Info object representing Settings root category.
public static SettingsCategoryInfo mRootCategory
Field Value
Properties
RootCategory
Returns root settings category (this property is cached).
[Obsolete("Property was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static SettingsCategoryInfo RootCategory { get; }
Property Value
Methods
DeleteInfo(SettingsCategoryInfo)
Deletes the object to the database.
protected override void DeleteInfo(SettingsCategoryInfo info)
Parameters
info
SettingsCategoryInfoObject to delete
GetCategoriesOnPath(string)
Gets all the categories on the specified category ID path in the corresponding order.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static InfoDataSet<SettingsCategoryInfo> GetCategoriesOnPath(string categoryIdPath)
Parameters
categoryIdPath
stringCategory ID path
Returns
GetCategoriesOnPathWhereCondition(string)
Gets where condition for all parent categories on path except root category.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetCategoriesOnPathWhereCondition(string categoryIdPath)
Parameters
categoryIdPath
stringCategory ID path
Returns
- string
GetChildSettingsCategories(int)
Gets DataSet with child setting categories of the specified parent setting category.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static InfoDataSet<SettingsCategoryInfo> GetChildSettingsCategories(int parentCategoryId)
Parameters
parentCategoryId
intID of the parent setting category
Returns
GetChildSettingsCategories(string, string)
Gets DataSet with child setting categories of the specified parent setting category, filtered by where condition.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static InfoDataSet<SettingsCategoryInfo> GetChildSettingsCategories(string parentCategoryName, string where)
Parameters
parentCategoryName
stringName of the parent setting category
where
stringWhere condition
Returns
GetChildSettingsCategoriesInternal(int)
Gets DataSet with child setting categories of the specified parent category.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
protected virtual InfoDataSet<SettingsCategoryInfo> GetChildSettingsCategoriesInternal(int parentCategoryId)
Parameters
parentCategoryId
intID of the parent setting category
Returns
GetChildSettingsCategoriesInternal(string, string)
Gets DataSet with child setting categories of the specified parent category.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
protected virtual InfoDataSet<SettingsCategoryInfo> GetChildSettingsCategoriesInternal(string parentCategoryName, string where)
Parameters
parentCategoryName
stringCode name of the parent setting category
where
stringWhere condition
Returns
GetLastSettingsCategoryOrder(int)
Returns last SettingsCategory order for specified parent SettingsCategory.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static int GetLastSettingsCategoryOrder(int parentCategoryID)
Parameters
parentCategoryID
intParent SettingsCategory ID
Returns
- int
GetLastSettingsCategoryOrderInternal(int)
Returns last order for specified parent SettingsCategory.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
protected virtual int GetLastSettingsCategoryOrderInternal(int parentCategoryID)
Parameters
parentCategoryID
intParent SettingsCategory ID
Returns
- int
GetRootSettingsCategoryInfo()
Gets root of categories. This is distinguished by CategoryLevel = 0. If more found -> use first.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static SettingsCategoryInfo GetRootSettingsCategoryInfo()
Returns
GetSettingsCategories(string, string, int, string)
Gets all categories.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static InfoDataSet<SettingsCategoryInfo> GetSettingsCategories(string where, string orderBy = null, int topN = -1, string columns = null)
Parameters
where
stringWhere condition to filter data
orderBy
stringOrder by statement to use
topN
intNumber of data rows which should be included in the result
columns
stringTable columns separated by comma which should be included in the result
Returns
GetSettingsCategoriesInternal(string, string, int, string)
Gets all categories.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
protected virtual InfoDataSet<SettingsCategoryInfo> GetSettingsCategoriesInternal(string where, string orderBy, int topN, string columns)
Parameters
where
stringWhere condition to filter data
orderBy
stringOrder by statement to use
topN
intNumber of data rows which should be included in the result
columns
stringTable columns which should be included in the result
Returns
MoveCategoryDown(int)
Moves specified category down.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static void MoveCategoryDown(int categoryId)
Parameters
categoryId
intCategory ID
MoveCategoryDownInternal(int)
Moves specified category down.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
protected virtual void MoveCategoryDownInternal(int categoryId)
Parameters
categoryId
intCategory ID
MoveCategoryUp(int)
Moves specified category up.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static void MoveCategoryUp(int categoryId)
Parameters
categoryId
intCategory ID
MoveCategoryUpInternal(int)
Moves specified category up.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
protected virtual void MoveCategoryUpInternal(int categoryId)
Parameters
categoryId
intCategory ID
RefreshDataCounts()
Updates all counts for all sub-objects.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static void RefreshDataCounts()
RefreshDataCountsInternal()
Updates all counts for all sub-objects.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
protected virtual void RefreshDataCountsInternal()
RefreshObjectsCounts()
Updates all counts for all sub-objects.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public void RefreshObjectsCounts()
SetInfo(SettingsCategoryInfo)
Inserts or Updates the object to the database.
protected override void SetInfo(SettingsCategoryInfo info)
Parameters
info
SettingsCategoryInfoObject to insert / update
SetSettingsCategoryChildCount(int)
Sets correct SettingsCategoryChildCount to the specified SettingsCategory.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static void SetSettingsCategoryChildCount(int settingsCategoryID)
Parameters
settingsCategoryID
intID of the SettingsCategory
SetSettingsCategoryChildCountInternal(int)
Sets correct CategoryChildCount to the specified SettingsCategory.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
protected virtual void SetSettingsCategoryChildCountInternal(int settingsCategoryID)
Parameters
settingsCategoryID
intID of the SettingsCategory