예제 #1
0
파일: Category.php 프로젝트: kingsj/core
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     $list['category_modify'] = $list['default'] = 'categories/modify/body.tpl';
     return $list;
 }
예제 #2
0
파일: Product.php 프로젝트: kingsj/core
 /**
  * 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;
 }