我是 Magento 的新手,文档,主要是 phpDocs,很难导航。例如,
$attributeSet = Mage::getModel('eav/entity_attribute_set')->load($id);
在Class Mage_Eav_Model_Entity_Attribute_Set的 php 文档中, 无论是在继承的方法中还是在其他方法中,都没有提到方法 getAttributeSetName(),但它仍然有效。
$attributeSet = Mage::getModel('eav/entity_attribute_set')->load($id);
echo $attributeSet->getAttributeSetName();
所以我想我有几个问题。
- 有人可以向我解释为什么文档是这样的吗?
- 在 phpDocs 中哪里可以找到神秘的 getAttributeSetName() 方法?
我的理论是,有一些我不理解的继承或设计模式实现正在进行,也许有人可以为我解释一下。