コード例 #1
0
ファイル: Category.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Define so called "request" parameters
  *
  * @return void
  */
 protected function defineRequestParams()
 {
     parent::defineRequestParams();
     $this->requestParams[] = 'id';
 }
コード例 #2
0
 /**
  * Define so called "request" parameters
  *
  * @return void
  */
 protected function defineRequestParams()
 {
     parent::defineRequestParams();
     $this->requestParams = array_merge($this->requestParams, static::getSearchParams());
 }
コード例 #3
0
ファイル: Transaction.php プロジェクト: kewaunited/xcart
 /**
  * Define so called "request" parameters
  *
  * @return void
  */
 protected function defineRequestParams()
 {
     parent::defineRequestParams();
     $this->requestParams[] = static::PARAM_SEARCH_ORDER;
     $this->requestParams[] = static::PARAM_SEARCH_PUBLIC_ID;
     $this->requestParams[] = static::PARAM_SEARCH_DATE;
     $this->requestParams[] = static::PARAM_SEARCH_STATUS;
     $this->requestParams[] = static::PARAM_SEARCH_VALUE;
     $this->requestParams[] = static::PARAM_SEARCH_ZIPCODE;
     $this->requestParams[] = static::PARAM_SEARCH_CUSTOMER_NAME;
 }