0
In the PHP
there are methods get_object_vars
and get_class
that return information about the class, in Magento we can use Zend_Debug::dump()
, the Mage::log()
and even the Xdebug of PHP
, but during the development of modules in Magento, where we need to overwrite some part of the administrative panel, for this we have to look for the correct classes.
How to get the list of all instantiated classes when accessing a Magento page?
Example: The user X
accessed Catálogo->Atributo->Gerenciar Atributo
, how to generate a Debug with the list of all classes that were instantiated when the user accessed the page Gerenciar Atributo
?