Interface ISettingsDetailDataProvider
Describes data provider for client page used for editing settings keys.
[Obsolete("The interface was not meant to be public. This interface will be removed in future releases.")]
[ObsoleteSince(28, 0)]
public interface ISettingsDetailDataProvider
- Extension Methods
Methods
GetParentCategoryName(int)
Returns localized name of the category specified by given categoryId
.
Task<string> GetParentCategoryName(int categoryId)
Parameters
categoryId
intCategory ID
Returns
- Task<string>
GetSettings(int, string)
Returns settings categories with assigned keys based on given parameters.
Task<List<SettingsGroupCategory>> GetSettings(int categoryId, string filter = null)
Parameters
categoryId
intID of selected category
filter
stringSearch filter expression
Returns
- Task<List<SettingsGroupCategory>>
SaveSettings(IEnumerable<IFormComponent>)
Updates settings keys based on component values returned from the client page.
void SaveSettings(IEnumerable<IFormComponent> components)
Parameters
components
IEnumerable<IFormComponent>Form components with updated values