config.xml
<global>
<models>
<pharmacy>
<class>Nommodul_Pharmacy_Model</class>
</pharmacy>
</models>
</global>
model/Pharmacy.php
<?php
class Nommodul_Pharmacy_Model_Pharmacy extends Mage_Core_Model_Abstract
{
public function _construct()
{
parent::_construct();
$this->_init('pharmacy/pharmacy');
}
public function getPharmacy()
{
Mage::log( "My controller was called");
}
}
Cridar el mòdul:
$pharmacy = Mage::getModel('pharmacy/pharmacy')->getPharmacy();