Content Apps
Adding a Content App
public class VoucherHistoryContentApp : IUiomaticContentAppFactory
{
public ContentApp GetContentAppFor(Type type)
{
if (type != typeof(Voucher)) return null;
var voucherHistoryApp = new ContentApp
{
Alias = "voucherHistory",
Name = "Voucher History",
Icon = "icon-calculator",
View = "/App_Plugins/ContentApps/voucherHistory.html",
Weight = 0
};
return voucherHistoryApp;
}
}Creating your content app view
Last updated