I am working on creating my very first community extension. It is a very simple one and is already working. I would like to learn how to add my extension to the admin area that will allow the customer to disable or enable it. What do I need to add to my module to be able to do this? Any help would be great!
Here is my code:
app/etc/modules/config.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Beckin_DropDownShipping>
<!-- Whether our module is active: true or false -->
<active>true</active>
<!-- Which code pool to use: core, community or local -->
<codePool>community</codePool>
</Beckin_DropDownShipping>
</modules>
</config>
app/code/local/Beckin/DropDownShipping/etc/system.xml
<?xml version="1.0"?>
<config>
<sections>
<beckin translate="label" module="dropdownshipping">
<label>Your Module Name</label>
<tab>tab_id_where_you_want_to_add_your_section</tab>
<frontend_type>text</frontend_type>
<sort_order>980</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
<groups>
<beckin>
<label>Your Group Title</label>
<sort_order>10</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
<fields>
<beckin translate="label comment">
<label>Your Field Title</label>
<comment>Your Comment</comment>
<frontend_type>text</frontend_type>
<sort_order>10</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>
</beckin>
</fields>
</beckin>
</groups>
</your_module>
</sections>
</config>
app/code/local/Beckin/DropDownShipping/etc/adminhtml.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<menu>
<beckin translate="title" module="dropdownshipping">
<title>Beckin</title>
<sort_order>15</sort_order>
<children>
<dropdownshipping translate="title" module="dropdownshipping">
<title>Drop Down Shipping</title>
<sort_order>1</sort_order>
<action>adminhtml/dropdownshipping/index</action>
</example>
</children>
</beckin>
</menu>
<layout>
<updates>
<beckin>
<file>beckin_dropdownshipping.xml</file>
</beckin>
</updates>
</layout>
<acl>
<resources>
<admin>
<children>
<system>
<children>
<config>
<children>
<beckin translate="title" module="dropdownshipping">
<title>Your Module Name</title>
</beckin>
</children>
</config>
</children>
</system>
</children>
</admin>
</resources>
</acl>
</config>
app/code/local/Beckin/DropDownShipping/etc/config.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Beckin_DropDownShipping>
<version>0.0.1</version>
</Beckin_DropDownShipping>
</modules>
<frontend>
<layout>
<updates>
<beckin>
<file>beckin_dropdownshipping.xml</file>
</beckin>
</updates>
</layout>
</frontend>
<global>
<helpers>
<beckin>
<class>Beckin_DropDownShipping_Helper</class>
</beckin>
</helpers>
</global>
</config>
My theme Layout XML File:
<?xml version="1.0"?>
<layout version="0.1.0">
<checkout_cart_index>
<reference name="head">
<action method="addCss"><stylesheet>css/Beckin/dropdownshipping.css</stylesheet></action>
</reference>
<reference name="checkout.cart.shipping">
<action method="setTemplate"><template>Beckin/dropdownshipping/drop_down_shipping.phtml</template></action>
</reference>
</checkout_cart_index>
</layout>
app/code/local/Beckin/DropDownShipping/Helper/Data.php
<?php
class Beckin_DropDownShipping_Data extends Mage_Core_Helper_Abstract
{
}