如何扩展“CheckOut"SDL Tridion 2011 SP1 中的命令? [英] How to Extend "CheckOut" Command in SDL Tridion 2011 SP1?

查看:26
本文介绍了如何扩展“CheckOut"SDL Tridion 2011 SP1 中的命令?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试扩展 Tridion 的CheckOut"命令,截至目前我正在尝试显示我自己的消息,并希望当我单击功能区工具中的CheckOut"选项时需要执行 OOTB CheckOut 操作吧.

I am trying to extend the "CheckOut" command of Tridion, and as of now I am trying to display my own message and am expecting the OOTB CheckOut action needs to be place when i click "CheckOut" option from the ribbon tool bar.

我已经创建了如下所示的配置文件和 .js 文件,我也对 System.config 进行了更改并创建了虚拟目录.但是我的 .js 没有被触发,也没有显示我的自定义消息.

I have created the config file and .js file as given below, i have made changes in the System.config as well and created the virtual directory also. However my .js not fired and not displaying my custom message.

config.xml

<?xml version="1.0"?>
<Configuration xmlns="http://www.sdltridion.com/2009/GUI/Configuration/Merge" xmlns:cfg="http://www.sdltridion.com/2009/GUI/Configuration" xmlns:ext="http://www.sdltridion.com/2009/GUI/extensions" xmlns:cmenu="http://www.sdltridion.com/2009/GUI/extensions/ContextMenu">
<resources cache="true">
    <cfg:filters/>
    <cfg:groups>
        <cfg:group name="CommandsExtensions.Commandset" merger="Tridion.Web.UI.Core.Configuration.Resources.CommandGroupProcessor" merge="always">
            <cfg:fileset>
                <cfg:file type="script">/js/ExtendCheckOut.js</cfg:file>
                <cfg:file type="reference">CommandsExtensions.Interface</cfg:file>
            </cfg:fileset>
            <cfg:dependencies>
                <cfg:dependency>Tridion.Web.UI.Editors.CME</cfg:dependency>
                <cfg:dependency>Tridion.Web.UI.Editors.CME.commands</cfg:dependency>
            </cfg:dependencies>
        </cfg:group>
    </cfg:groups>
</resources>
<definitionfiles/>
<extensions>
    <ext:editorextensions>
        <ext:editorextension target="CME">
            <ext:editurls/>
            <ext:listdefinitions/>
            <ext:taskbars/>
            <ext:commands/>
            <ext:commandextensions>
                <ext:commands>
                    <ext:command name="CheckOut" extendingcommand="ExtendCheckOut" />
                </ext:commands>
                <ext:dependencies>
                    <cfg:dependency>CommandsExtensions.Commandset</cfg:dependency>
                </ext:dependencies>
            </ext:commandextensions>
            <ext:contextmenus/>
            <ext:lists/>
            <ext:tabpages/>
            <ext:toolbars/>
            <ext:ribbontoolbars/>
        </ext:editorextension>
    </ext:editorextensions>
    <ext:dataextenders/>
</extensions>
<commands>
    <cfg:commandset id="CommandsExtensions.Interface">
        <cfg:command name="ExtendCheckOut" implementation="CommandsExtensions.ExtendCheckOut"/>
    </cfg:commandset>
</commands>
<contextmenus/>
<localization/>
<settings>
    <defaultpage>/Views/Default.aspx</defaultpage>
    <navigatorurl>/Views/Default.aspx</navigatorurl>
    <editurls/>
    <listdefinitions/>
    <itemicons/>
    <theme>
        <path>css</path>
    </theme>
    <customconfiguration/>
</settings>

.js 文件

Type.registerNamespace("Extensions");

Extensions.ExtendCheckOut = function Extensions.ExtendCheckOut() {
   Type.enableInterface(this, "Extensions.ExtendCheckOut");
   this.addInterface("Tridion.Cme.Command", ["ExtendCheckOut"]);
};

Extensions.ExtendCheckOut.prototype.isAvailable = function ExtendCheckOut$isAvailable(selection) {
   return true;
}

Extensions.ExtendCheckOut.prototype.isEnabled = function ExtendCheckOut$isEnabled(selection) {
   return true;
}

Extensions.ExtendCheckOut.prototype._execute = function ExtendCheckOut$_execute(selection) {
   $messages.registerWarning("This is Extended CheckOut");
}

推荐答案

这就是我所做的,扩展了保存按钮:

This is what I did, extending the Save button:

<cfg:groups>
  <cfg:group name="ValidateTitleField.CommandSet">
    <cfg:fileset>
      <cfg:file type="script">/Commands/ValidateTitleFieldCommand.js</cfg:file>
      <cfg:file type="reference">ValidateTitleField.Interface</cfg:file>
    </cfg:fileset>
    <cfg:dependencies>
      <cfg:dependency>Tridion.Web.UI.Editors.CME</cfg:dependency>
      <cfg:dependency>Tridion.Web.UI.Editors.CME.commands</cfg:dependency>
    </cfg:dependencies>
  </cfg:group>
  <cfg:group name="ValidateTitleField.Views.ValidateTitleFieldPopup">
    <cfg:fileset>
      <cfg:file type="script">/Views/ValidateTitleFieldPopup.js</cfg:file>
      <cfg:file type="style">/Views/ValidateTitleFieldPopup.css</cfg:file>
    </cfg:fileset>
    <cfg:dependencies>
      <cfg:dependency>Tridion.Web.UI.Editors.CME</cfg:dependency>
      <cfg:dependency>Tridion.Web.UI.Editors.CME.commands</cfg:dependency>
    </cfg:dependencies>
  </cfg:group>
</cfg:groups>

[...]

  <ext:editorextension target="CME">
    <ext:editurls />
    <ext:listdefinitions />
    <ext:taskbars />
    <ext:commands />
    <ext:commandextensions>
      <ext:commands>
        <ext:command name="Save" extendingcommand="ValidateTitleField"/>
      </ext:commands>
      <ext:dependencies>
        <cfg:dependency>ValidateTitleField.CommandSet</cfg:dependency>
      </ext:dependencies>
    </ext:commandextensions>
    <ext:contextmenus />
    <ext:lists />
    <ext:tabpages />
    <ext:toolbars />
    <ext:ribbontoolbars />
  </ext:editorextension>

[...]

<commands>
  <cfg:commandset id="ValidateTitleField.Interface">
    <cfg:command name="ValidateTitleField" implementation="Company.Extensions.ValidateTitleFieldCommand"/>
  </cfg:commandset>
</commands>

然后在我的命令实现 (JS) 中,我使用以下内容来调用原始"方法:

Then in my command implementation (JS) I used the following to invoke the "original" methods:

Company.Extensions.ValidateTitleFieldCommand.prototype._isAvailable = function ValidateTitleFieldCommand$_isAvailable(selection) {
    console.debug("Is Available called");
    return $cme.getCommand("Save")._isAvailable(selection);
};

最后,在 _execute 方法的深处:

And finally, somewhere deep in the _execute method:

if (!failed)
    return $cme.getCommand("Save")._execute(selection, pipeline);
else {
    this.loadPopup();
}

希望这会有所帮助,

N

这篇关于如何扩展“CheckOut"SDL Tridion 2011 SP1 中的命令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆