2021-11-23 11:56:42 +01:00
|
|
|
namespace zero.Backoffice.UIComposition;
|
2021-11-22 14:29:22 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Manage the page tree in this section
|
|
|
|
|
/// </summary>
|
2021-11-23 11:35:01 +01:00
|
|
|
public class PagesSection : IInternalBackofficeSection
|
2021-11-22 14:29:22 +01:00
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Alias => Constants.Sections.Pages;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Name => "@sections.item.pages";
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Icon => "fth-folder";
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Color => "#0cb0f5";
|
|
|
|
|
|
2021-12-29 01:25:35 +01:00
|
|
|
/// <inheritdoc />
|
|
|
|
|
public int Sort => 100;
|
|
|
|
|
|
2021-11-22 14:29:22 +01:00
|
|
|
/// <inheritdoc />
|
2021-11-23 11:35:01 +01:00
|
|
|
public IList<IChildBackofficeSection> Children => new List<IChildBackofficeSection>();
|
2021-11-22 14:29:22 +01:00
|
|
|
}
|