Sim*_*mon 5 model magento magento-1.12
我想在config
magento实例中添加一个字段.您应该能够在其中存储cms块.
<block translate="label">
<label>Cms block</label>
<frontend_type>select</frontend_type>
<source_model>???</source_model>
<sort_order>30</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</block>
Run Code Online (Sandbox Code Playgroud)
但我只找到了cms pages(adminhtml/system_config_source_cms_page
)的模型.
source_model
cms 块对应的是什么?
我认为类Mage_Cms_Model_Resource_Block_Collection对此很有用:
<cms_block translate="label">
<label>Left template CMS block</label>
<frontend_type>select</frontend_type>
<source_model>cms/resource_block_collection</source_model>
<sort_order>0</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>0</show_in_website>
<show_in_store>0</show_in_store>
</cms_block>
Run Code Online (Sandbox Code Playgroud)