I looked through many sites and articles about adding items to admin menu in magento, some examples I copied one to one and I haven't gotten any result. Please tell me what I did wrong?
I have the module SmartLetter, it's showing in the module list.
Magento ver. 1.9.2.2
The path to the module folder is - app ▸ code ▸ local ▸ Chu ▸ SmartLetter
config.xml:
<?xml version="1.0"?>
<config>
<modules>
<Chu_SmartLetter>
<version>0.0.1</version>
</Chu_SmartLetter>
</modules>
<global>
</global>
</config>
adminhtml.xml:
<?xml version="1.0"?>
<config>
<menu>
<smartletter translate="title" module="smartletter">
<title>Smart Letter</title>
<sort_order>40</sort_order>
</smartletter>
</menu>
<acl>
<resources>
<admin>
<children>
<system>
<children>
<config>
<children>
<smartletter translate="title" module="smartletter">
<title>SmartLetter Section</title>
</smartletter>
</children>
</config>
</children>
</system>
</children>
</admin>
</resources>
</acl>
</config>