Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i've made my own module in magento admin and i've added a menu with config.xml file :

 <adminhtml>
        <!-- The <layout> updates allow us to define our block layouts in a separate file so are aren't messin' with the Magento layout files.  -->
        <layout>
            <updates>
                <ineractivebanner>
                    <file>adminbanner.xml</file>
                </ineractivebanner>
            </updates>
        </layout>
        <!-- The <acl> section is for access control. Here we define the pieces where access can be controlled within a role. -->
        <acl>
            <resources>
                <admin>
                    <children>
                        <ineractivebanner>
                            <title>Banner Menu Item</title>
                            <children>
                                <interactivebannermenu>
                                    <title>Banner Menu Item</title>
                                </interactivebannermenu>
                            </children>
                        </ineractivebanner>
                    </children>
                </admin>
            </resources>
        </acl>
      <menu>
        <interactivebanner>
            <title>Banners</title>
            <sort_order>71</sort_order>
            <children>
                <interactivebannermenu>
                    <title>Manage Banners</title>
                    <sort_order>1</sort_order>
                    <action>interbanner/adminhtml_banner/index</action>
                </interactivebannermenu>
            </children>
       </interactivebanner>
    </menu>
    </adminhtml>    

everything works well, but the menu class do not turn to active whene in my module!!

<li class="parent level0" onmouseout="Element.removeClassName(this,'over')" onmouseover="Element.addClassName(this,'over')">
<a class="" onclick="return false" href="#">
<span>Banners</span>
</a>
<ul>
</li>

thanks for your help :)

share|improve this question

1 Answer

up vote 0 down vote accepted

I found it:

protected function _initAction() {
    $this -> loadLayout() -> _setActiveMenu(' ') -> _addBreadcrumb(' ', ' ');
    return $this;
}

Use it in the Adminhtml Controller !

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.