在Sitecore中如何通过右键单击内容项来打开自定义Sitecore应用程序?

时间:2013-06-04 14:25:53

标签: sitecore sitecore6

我希望能够右键单击Sitecore中的内容项,然后在上下文菜单中选择“运行我的应用程序”之类的内容。然后在运行的应用程序中,我需要能够引用右键单击的内容项。这可能吗?

1 个答案:

答案 0 :(得分:2)

是的,你可以做到这一点,它并不像听起来那么难。

您想要进入Core数据库并打开内容编辑器。右键菜单在 sitecore / content / Applications / Content Editor / Context Menus / Default

中定义

该文件夹中的项目是右键单击树中的项目时看到的内容。因此,您可以使用菜单项模板添加新项目。

如果查看现有的,大多数都会向Sitecore桌面发送消息。这些消息是/App_Config/Commands.config中定义的命令。我在那里看不到任何会启动另一个Sitecore应用程序的东西,所以你需要创建一个新的命令来做到这一点。要创建一个,只需继承Sitecore.Shell.Framework.Commands.Command类。传递的是CommandContext,它将包含一组Items。

    public class DemoCommand: Command
{
    #region Overrides of Command

    /// <summary>
    /// Executes the command in the specified context.
    /// </summary>
    /// <param name="context">The context.</param>
    public override void Execute(CommandContext context)
    {
        Assert.ArgumentNotNull(context, "context");

        var parameters = new NameValueCollection();
        if (context.Items != null && context.Items.Length == 1)
        {
            var item = context.Items[0];
            parameters["id"] = item.ID.ToString();
        }
        Context.ClientPage.Start(this, "Run", parameters);
    }

    #endregion

    public CommandState QueryStat(CommandContext context)
    {
        Assert.ArgumentNotNull(context, "context");
        return CommandState.Enabled;
    }

    protected static void Run(ClientPipelineArgs args)
    {
        Assert.ArgumentNotNull(args, "args");

        SheerResponse.CheckModified(false);
        SheerResponse.Broadcast(
                        SheerResponse.ShowModalDialog(
                            "[Path to your application here]"
                        ),
                        "Shell");
    }
}

要让项目通过,请在邮件调用中 - 只需传递变量$ Target。

因此,菜单项中的字段消息将类似于:

item:runMyApplication(id=$Target)

希望有道理:)