Exemple #1
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     $list['category_modify'] = $list['default'] = 'categories/modify/body.tpl';
     return $list;
 }
Exemple #2
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     $list['info'] = 'product/info.tpl';
     $list['default'] = 'product/info.tpl';
     if (!$this->isNew()) {
         $list['images'] = 'product/product_images.tpl';
         $list['inventory'] = 'product/inventory.tpl';
     }
     return $list;
 }