답변:
에 대한 "역 지시문"이 없습니다 ifconfig
. 다음 과 같이 헬퍼 메소드로 name 매개 변수를 계산할 수 있습니다 .
XML :
<action method="addItem">
<type>js_css</type>
<name helper="helpername/helpermethod"/>
</action>
helpername
는 일반적으로 전달하는 식별자 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>