Example #1
0
 /**
  * Get URL common parameters
  *
  * @return array
  */
 protected function getCommonParams()
 {
     $this->commonParams = parent::getCommonParams();
     $this->commonParams['product_id'] = \XLite\Core\Request::getInstance()->product_id;
     $this->commonParams['page'] = 'wholesale_pricing';
     return $this->commonParams;
 }
Example #2
0
 /**
  * Get URL common parameters
  *
  * @return array
  */
 protected function getCommonParams()
 {
     $this->commonParams = parent::getCommonParams();
     $this->commonParams[static::PARAM_CATEGORY_ID] = \XLite\Core\Request::getInstance()->{static::PARAM_CATEGORY_ID};
     return $this->commonParams;
 }
Example #3
0
 /**
  * Get URL common parameters
  *
  * @return array
  */
 protected function getCommonParams()
 {
     parent::getCommonParams();
     $this->commonParams['id'] = $this->getCategory()->getCategoryId();
     return $this->commonParams;
 }
Example #4
0
 /**
  * Get URL common parameters
  *
  * @return array
  */
 protected function getCommonParams()
 {
     $this->commonParams = parent::getCommonParams();
     $this->commonParams['page'] = $this->getPage();
     return $this->commonParams;
 }
Example #5
0
 /**
  * Get URL common parameters
  *
  * @return array
  */
 protected function getCommonParams()
 {
     $this->commonParams = parent::getCommonParams();
     $this->commonParams[static::PARAM_PRODUCT_ID] = \XLite\Core\Request::getInstance()->product_id;
     $this->commonParams['page'] = 'upselling_products';
     return $this->commonParams;
 }
Example #6
0
 /**
  * Get URL common parameters
  *
  * @return array
  */
 protected function getCommonParams()
 {
     parent::getCommonParams();
     $this->commonParams['processor'] = $this->getProcessorId();
     return $this->commonParams;
 }