사용자 정의 탭에서 사용자 정의 섹션에 대한 그룹 및 일부 필드를 만들려고합니다.
탭과 섹션이 생성되고 있지만 내용 영역에서 섹션을 클릭하면 404를 찾을 수 없음 오류가 표시됩니다.
내 system.xml 파일은 다음과 같습니다
<config>
<tabs>
<!--node is just an identifier-->
<animala translate="label" module="training_animal">
<label>Training</label>
<sort_order>1</sort_order>
</animala>
</tabs>
<sections>
<animals translate="label" module="training_animal">
<class>seperator-top</class>
<label>Training</label>
<!--node vlaue should match the tabs node name-->
<tab>animala</tab>
<frontend_type>text</frontend_type>
<sort_order>100</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<groups>
<training_animal_group translate="label">
<label>My Custom Group</label>
<comment>Some comment about my group</comment>
<sort_order>10</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<fields>
<training_animal_field translate="label tooltip comment">
<label>My Custom Field</label>
<comment>Some comment about my field</comment>
<tooltip>Field ToolTip</tooltip>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<frontend_type>text</frontend_type>
</training_animal_field>
</fields>
</training_animal_group>
</groups>
</animals>
</sections>
</config>
내 섹션의 URL은
http://localhost/mage2/index.php/admin/system_config/edit/section/animal/
config.xml 모듈
<modules>
<Training_Animal>
<version>0.2.0</version>
</Training_Animal>
</modules>
Training_Animal_Block
<training_animal>
<class>Training_Animal_Helper</class>
</training_animal>
</helpers>
이 글에 참여해 주신 모든 분들께 감사드립니다 :)
—
siliconrockstar