select() public method

Return the items array. This is an array of key value pairs array
public select ( )
 /**
  * Return the items data list. This method will be over-ridden in a sub-class.
  *
  * @brief Return the items data list
  *
  * @return array
  */
 public function data()
 {
     if (!empty($this->model) && method_exists($this->model, 'select')) {
         // TODO Replave $_REQUEST with $_GET ?
         return $this->model->select($_REQUEST);
     }
     return array();
 }