Example #1
0
 /**
  * Get pages sections
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     if (!$this->isNew()) {
         $list['auctionInc'] = static::t('ShippingCalc');
     }
     return $list;
 }
Example #2
0
 /**
  * Get pages sections
  *
  * @return array
  */
 public function getPages()
 {
     $pages = parent::getPages();
     if (!$this->isNew()) {
         $pages += array('upselling_products' => static::t('Related products'));
     }
     return $pages;
 }
Example #3
0
 /**
  * Get pages
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     if (!$this->isNew()) {
         $list[static::PAGE_WHOLESALE_PRICING] = static::t('Wholesale pricing');
     }
     return $list;
 }
Example #4
0
 /**
  * Get pages sections
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     if (!$this->isNew()) {
         $list['product_reviews'] = static::t('Product reviews');
     }
     return $list;
 }
Example #5
0
 /**
  * Get pages sections
  *
  * @return array
  */
 public function getPages()
 {
     $pages = parent::getPages();
     if (!$this->isNew()) {
         $pages += array('pin_codes' => static::t('PIN codes'));
     }
     return $pages;
 }
Example #6
0
 /**
  * Get pages sections
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     if (!$this->isNew()) {
         $list['tabs'] = static::t('Tabs');
     }
     return $list;
 }
Example #7
0
 /**
  * Get pages sections
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     if (!$this->isNew()) {
         $list['product_options'] = 'Product options';
     }
     return $list;
 }
Example #8
0
 /**
  * Get pages sections
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     if (!$this->isNew()) {
         $list['attachments'] = 'Attachments';
     }
     return $list;
 }
Example #9
0
 /**
  * Get pages sections
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     if (!$this->isNew()) {
         $list['additional_info'] = static::t('Additional details');
         $list['shipping_restrictions'] = static::t('Shipping restrictions');
     }
     return $list;
 }
Example #10
0
 /**
  * Get pages
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     if (!$this->isNew()) {
         $list = array_merge(array_slice($list, 0, 2), array(static::PAGE_VARIANTS => static::t('Variants')), array_slice($list, 2));
     }
     return $list;
 }