0

Umbraco 7.6 で新しいセクションを作成しようとしています。

私はこれを、BaseTree から拡張されたツリー コントローラを使用する「古い」方法で動作させましたが、非常に醜いものでした。

私は今、TreeController を使ってそれをやろうとしています。私はチュートリアルに従っています:

  1. ケビン・ギシェフスキー ( https://github.com/kgiszewski/LearnUmbraco7/blob/master/Chapter%2016%20-%20Custom%20Sections%2C%20Trees%20and%20Actions/01%20-%20Create%20a%20Section.md )

  2. もう 1 つは Tim Geyssens によるものです ( https://github.com/TimGeyssens/UmbracoAngularBackofficePages )

しかし、私が得ているのは、ツリーのない空のセクションで、タイトルだけです:

ここにコードを入力してください

コントローラはデバッグでもヒットせず、コンソール エラーも 500 エラーも発生せず、すべて正常にコンパイルされます。

これが私のコードです:

trees.config:

<add initialize="true" sortOrder="0" alias="UmbracoBookshelfTree" application="UmbracoBookshelf" title="Umbraco Bookshelf" iconClosed="icon-folder"
    iconOpen="icon-folder-open" type="UmbracoBookshelf.Controllers.UmbracoBookshelfTreeController, MyWebsite.Backoffice"/>

applications.config:

<add alias="UmbracoBookshelf" name="Umbraco Bookshelf" icon="icon-globe-inverted-america" sortOrder="5"/>

セクション:

using umbraco.businesslogic;
using umbraco.interfaces;

namespace UmbracoBookshelf.Applications
{
    [Application("UmbracoBookshelf", "Umbraco Bookshelf", "icon-globe-inverted-america", 5)]
    public class UmbracoBookshelfApplication : IApplication
    {
    }
}

ツリー コントローラ:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Formatting;
using System.Web;
using umbraco;
using umbraco.BusinessLogic.Actions;
using Umbraco.Core;
using Umbraco.Web.Models.Trees;
using Umbraco.Web.Mvc;
using Umbraco.Web.Trees;

namespace UmbracoBookshelf.Controllers
{
    [PluginController("UmbracoBookshelf")]
    [Umbraco.Web.Trees.Tree("UmbracoBookshelf", "UmbracoBookshelfTree", "Umbraco Bookshelf", iconClosed: "icon-folder")]
    public class UmbracoBookshelfTreeController : TreeController
    {

        protected override Umbraco.Web.Models.Trees.MenuItemCollection GetMenuForNode(string id, System.Net.Http.Formatting.FormDataCollection queryStrings)
        {
            var menu = new MenuItemCollection();

            if (id == Constants.System.Root.ToInvariantString())
            {
                // root actions              
                menu.Items.Add<CreateChildEntity, ActionNew>(ui.Text("actions", ActionNew.Instance.Alias));
                menu.Items.Add<RefreshNode, ActionRefresh>(ui.Text("actions", ActionRefresh.Instance.Alias), true);
                return menu;
            }
            else
            {
                //menu.DefaultMenuAlias = ActionDelete.Instance.Alias;
                menu.Items.Add<ActionDelete>(ui.Text("actions", ActionDelete.Instance.Alias));

            }
            return menu;
        }

        protected override TreeNodeCollection GetTreeNodes(string id, FormDataCollection queryStrings)
        {
            var nodes = new TreeNodeCollection();

            nodes.Add(CreateTreeNode("123", "456", queryStrings, "Some name to be shown"));
            nodes.Add(CreateTreeNode("789", "456", queryStrings, "Some other name to be shown"));

            return nodes;
        }
    }
}

それは非常に単純です。ここで何が間違っているのでしょうか?

4

1 に答える 1