2

We can see that adminhtml is in core codepool like any other core modules.

So is it possible to disable this module like others?

But there is no options at:

system > configuration > advanced > Disable Modules Output

and also no xml file in app/etc/modules.

mano
  • 366
  • 1
  • 15

2 Answers2

1

Adminhtml module's definition is present in Mage_All.xml file under app/etc/modules.

But to disable it, you will need to remove dependencies of many other modules on it.

Some dependent modules are:

  • AdminNotification
  • Captcha
  • Persistent etc.
Mohit Kumar Arora
  • 9,951
  • 7
  • 27
  • 55
1

I think entire admin panel is a module.

As when you make these code <active>false</active> under Mage_All.xml it goes down like all other modules in magento

<Mage_Admin>
            <active>true</active>
            <codePool>core</codePool>
            <depends>
               <Mage_Core/>
            </depends>
        </Mage_Admin>
Arjun
  • 3,576
  • 23
  • 59