5

sitecore 有没有办法确保某种类型的项目只能有某种类型的项目的 1 个子项?我正在阅读规则引擎食谱,但我没有得到太多细节。

4

1 回答 1

6

我工作的一个网站要求在某个项目类型下不能存在超过 6 个子项目。我们考虑使用插入选项规则,但决定放弃这个想法,因为它不会阻止复制、移动或复制项目。

相反,我们决定item:created使用专门针对此任务的处理程序来扩展事件。下面是它如何工作的精简示例。一个明显的改进是从父项的字段中获取最大子项限制(当然只有管理员可见)。您甚至可以在这里利用规则引擎......

public void OnItemCreated(object sender, EventArgs args)
{
    var createdArgs = Event.ExtractParameter(args, 0) as ItemCreatedEventArgs;

    Sitecore.Diagnostics.Assert.IsNotNull(createdArgs, "args");
    if (createdArgs != null)
    {
        Sitecore.Diagnostics.Assert.IsNotNull(createdArgs.Item, "item");
        if (createdArgs.Item != null)
        {
            var item = createdArgs.Item;

            // NOTE: you may want to do additional tests here to ensure that the item
            // descends from /sitecore/content/home
            if (item.Parent != null && 
                item.Parent.TemplateName == "Your Template" &&
                item.Parent.Children.Count() > 6)
            {
                // Delete the item, warn user
                SheerResponse.Alert(
                    String.Format("Sorry, you cannot add more than 6 items to {0}.",
                                      item.Parent.Name), new string[0]);
                item.Delete();
            }
        }
    }
}
于 2012-08-29T20:43:24.127 回答