回答:
への「逆指令」はありませんifconfig
。次のようなヘルパーメソッドで計算された名前パラメーターを引き続き使用できます。
XML:
<action method="addItem">
<type>js_css</type>
<name helper="helpername/helpermethod"/>
</action>
helpername
は通常渡すIDでMage::helper($name)
ありhelpermethod
、呼び出すメソッドです。
モジュールのヘルパークラス(疑似コード):
public function helpermethod()
{
if ($enabled) {
return 'module/app1.css';
} else {
return 'module/app2.css';
}
}
この拡張機能を拡張構成オプションに使用する
condition
タグにタグを使用できます
<action method="addItem" ifconfig="module/general/enable" condition="1">
<type>js_css</type>
<name>module/app.css</name>
</action>
<action method="addItem" ifconfig="module/general/enable" condition="0">
<type>js_css</type>
<name>module/app1.css</name>
</action>