I'm new to Magento and I have a config.xml which stands for a module configuration as far as I've learned.
I have problems to understand (also to locate some sort of documentation for that, Magentos config.xml Reference is totally no-saying to me) on this very basic level already. For example the following excerpt from config.xml:
<?xml version="1.0"?>
<config>
<modules>
<My_Mage>
<version>1.0.0</version>
</My_Mage>
</modules>
<global>
<models>
<My_Mage>
<class>My_Mage_Model</class>
</My_Mage>
<!-- ... --->
</models>
</global>
</config>
What is the part in config/globals/models about?
I guessed it was about some file on disk, however I can not find any file related to the <class> "My_Mage_Model".
For what does that part stand for?:
<models>
<My_Mage>
<class>My_Mage_Model</class>
</My_Mage>
Any hints greatly appreceated.
class My_Mage_Model_ConcreteModel). The module name is given within the<My_Mage>tag, corresponding to the module directory. See https://magento.stackexchange.com/questions/18269/understanding-config-xml-what-is-configglobalmodelsmy-mage - Still not sure about<globals>. – hakre Apr 11 '14 at 14:17