Frankly, there is no official name for this internal label in a particular class.
But I know that the first part before the slash is called the โclass groupโ, this is not the name of the module, because Magento can share different classes from different modules in the same group (using the rewrite statement). Yes, there is an initial module that defines the default class prefix, but you can change this prefix by merging configuration files.
The second part, which I would like to call the name of the model / model resource / block / helper.
In general, one could name:
- model path for
Mage::getModel() and Mage::getSingleton() - block path for
Mage::getBlockSingleton() and $layout->createBlock() - helper path for
Mage::helper()
But there is no official name for this design. So itโs not a rule to call this way :)
UPDATE : In Mage_Core_Model_Config::getGroupedClassName() this construct is called Class Id, so perhaps this name is more clear.
source share