Example #1
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     if (!$this->isNew()) {
         $list['auctionInc'] = 'modules/XC/AuctionInc/product.tpl';
     }
     return $list;
 }
Example #2
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $tpls = parent::getPageTemplates();
     if (!$this->isNew()) {
         $tpls += array('upselling_products' => 'modules/XC/Upselling/upselling_products.tpl');
     }
     return $tpls;
 }
Example #3
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     if (!$this->isNew()) {
         $list[static::PAGE_WHOLESALE_PRICING] = 'modules/CDev/Wholesale/pricing/body.tpl';
     }
     return $list;
 }
Example #4
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     if (!$this->isNew()) {
         $list['product_reviews'] = 'modules/XC/Reviews/product/reviews.tpl';
     }
     return $list;
 }
Example #5
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $tpls = parent::getPageTemplates();
     if (!$this->isNew()) {
         $tpls += array('pin_codes' => 'modules/CDev/PINCodes/product/pin_codes.tpl');
     }
     return $tpls;
 }
Example #6
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     if (!$this->isNew()) {
         $list['tabs'] = 'modules/XC/CustomProductTabs/product/tabs.tpl';
     }
     return $list;
 }
Example #7
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     if (!$this->isNew()) {
         $list['attachments'] = 'modules/CDev/FileAttachments/product_tab.tpl';
     }
     return $list;
 }
Example #8
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     if (!$this->isNew()) {
         $list['product_options'] = 'modules/CDev/ProductOptions/product_options_lander.tpl';
     }
     return $list;
 }
Example #9
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     if (!$this->isNew()) {
         $list = array_merge(array_slice($list, 0, 2), array(static::PAGE_VARIANTS => 'modules/XC/ProductVariants/variants/body.tpl'), array_slice($list, 2));
     }
     return $list;
 }
Example #10
0
 /**
  * Get pages templates
  *
  * @return array
  */
 protected function getPageTemplates()
 {
     $list = parent::getPageTemplates();
     if (!$this->isNew()) {
         $list['additional_info'] = 'modules/XC/PitneyBowes/product/additional.tpl';
         $list['shipping_restrictions'] = 'modules/XC/PitneyBowes/product/restrictions.tpl';
     }
     return $list;
 }