Tridion 的用户界面允许您扩展特定命令,这是修改某些现有命令的行为的好方法。在编辑器的配置文件中,这是通过如下部分完成的:
<ext:commands>
<ext:command name="TextUnderline" extendingcommand="MyTextUnderline"/>
<ext:command name="TextStrikethrough" extendingcommand="MyTextStrikethrough"/>
我正在研究一个通用命令扩展类,可用于修改许多命令的行为:
<ext:commands>
<ext:command name="TextUnderline" extendingcommand="MyCommandExtension"/>
<ext:command name="TextStrikethrough" extendingcommand="MyCommandExtension"/>
因此,在第二个配置片段中,我们对和进行了相同的MyCommandExtension
扩展。TextUnderline
TextStrikethrough
但是现在在我的 JavaScript 中,我MyCommandExtension
如何确定最初触发了哪个命令?
MyCommandExtension.prototype.isAvailable = function (selection, pipeline) {
...
console.log(this.properties.name);
...
};
在这种情况下,this.properties.name
将被记录为不太有用但完全正确:
“禁用命令”
我怀疑该信息在pipeline
参数中的某处可用,但尚未找到。
如何从中找出原始命令MyCommandExtension
?