I just wrote a Magento module, but it's not being loaded and I'd like to debug it.
相关问题
- slurm: use a control node also for computing
- Pass custom debug information to Microsoft bot fra
- How do I identify what code is generating “ '&
- Grails External Configuration. Can't access to
- Monodevelop: `Waiting for debugger`
相关文章
- How do I get to see DbgPrint output from my kernel
- Advanced profiling is unavailable for the selected
- Can't Inspect Variables When Debugging .NET As
- What is the difference between glibc's MALLOC_
- Embedding a program's source code into its bin
- Magento, translate validation error messages
- How to arrange a Makefile to compile a kernel modu
- How to execute another python script from your scr
Here are a couple of classes and the methods that are responsible for various stages of loading.
Mage_Core_Model_Config
Called for each module (returns a Mage_Core_Model_Config representing the module's XML block in the main config directory (enabled, version, etc..)):
Called for each module, but just builds a structure still without including the individual module configs:
Loads config.xml, enterprise.xml, local.xml, etc..:
Loads the individual module configs:
Varien_Simplexml_Config (lib/Varien/Simplexml/Config.php)
What actually reads the individual module configs:
Dustin Oprea