content management system - Adding a new option to the magento CMS -


for magento web shop created custom module. add config options module magento cms can configured in there.

can please tell me how go around doing this?

any appreciated.

you have create system.xml file with

<config>     <sections>         <company_modulename translate="label" module="company_modulename">             <label>company</label>             <frontend_type>text</frontend_type>                 <groups>                     <yourconfiggroup translate="label">                         <label>your config group</label>                         <frontend_type>text</frontend_type>                         <fields>                             <youroption translate="label comment">                                 <label>your option</label>                                 <comment><![cdata[your option]]></comment>                                 <frontend_type>select</frontend_type>                             </youroption>                         </fields>                     </yourconfiggroup>                 </groups>         </company_modulename>     </sections> </config> 

take care allow access section adminhtml.xml too.


Comments