Initial commit on "more" button

This commit is contained in:
copilaurobert
2018-08-17 14:14:01 +02:00
parent 5b4ef5b29e
commit 4efc0c8be2
6 changed files with 198 additions and 100 deletions

View File

@@ -27,6 +27,14 @@ namespace Umbraco.Web.Models.Mapping
View = "views/content/apps/info/info.html"
};
private readonly ContentApp _moreApp = new ContentApp
{
Alias = "more",
Name = "More",
Icon = "icon-thumbnails-small",
View = "views/content/apps/info/info.html"
};
private readonly IDataTypeService _dataTypeService;
private readonly PropertyEditorCollection _propertyEditorCollection;
@@ -48,7 +56,8 @@ namespace Umbraco.Web.Models.Mapping
apps.Add(_contentApp);
apps.Add(_infoApp);
apps.Add(_moreApp);
return apps;
}
}