Example #1
0
 /**
  * Define so called "request" parameters
  *
  * @return void
  */
 protected function defineRequestParams()
 {
     parent::defineRequestParams();
     $this->requestParams[] = 'id';
 }
Example #2
0
 /**
  * Define so called "request" parameters
  *
  * @return void
  */
 protected function defineRequestParams()
 {
     parent::defineRequestParams();
     $this->requestParams = array_merge($this->requestParams, static::getSearchParams());
 }
Example #3
0
 /**
  * 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;
 }