Magento Design Patterns

后端 未结 8 1008
北海茫月
北海茫月 2021-01-29 22:59

Magento, IMHO, represents a PHP system that is built on well thought-out coding principles - reuseable design patterns being one of them. In terms of an example of a PHP system

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-29 23:42

    A few more:

    Event/Listeners:

    Mage::dispatchEvent('model_load_before', $params); 
    

    And of course, MVC, with Views being represented by a combination of XML, PHP Classes, and PHTML templates.

提交回复
热议问题