Files
Umbraco-CMS/src/Umbraco.Web/Trees/PartialViewMacrosTreeController.cs
2017-09-12 16:22:16 +02:00

34 lines
1.2 KiB
C#

using Umbraco.Core.IO;
using Umbraco.Web.Composing;
using Umbraco.Web.Models.Trees;
using Umbraco.Web.Mvc;
using Umbraco.Web.WebApi.Filters;
using Constants = Umbraco.Core.Constants;
namespace Umbraco.Web.Trees
{
/// <summary>
/// Tree for displaying partial view macros in the developer app
/// </summary>
[Tree(Constants.Applications.Developer, Constants.Trees.PartialViewMacros, null, sortOrder: 6)]
[UmbracoTreeAuthorize(Constants.Trees.PartialViewMacros)]
[PluginController("UmbracoTrees")]
[CoreTree]
public class PartialViewMacrosTreeController : PartialViewsTreeController
{
protected override IFileSystem FileSystem => Current.FileSystems.MacroPartialsFileSystem;
private static readonly string[] ExtensionsStatic = {"cshtml"};
protected override string[] Extensions => ExtensionsStatic;
protected override string FileIcon => "icon-article";
protected override void OnRenderFolderNode(ref TreeNode treeNode)
{
//TODO: This isn't the best way to ensure a noop process for clicking a node but it works for now.
treeNode.AdditionalData["jsClickCallback"] = "javascript:void(0);";
}
}
}