Exemplo n.º 1
0
 /**
  * Overrides parent class
  * @return array
  */
 public function getPostVars()
 {
     $postVars = array("fields");
     return array_merge(parent::getPostVars(), $postVars);
     //$temp = array_merge(parent::getPostVars(),$postVars);
     //print_r($temp);
     //exit;
 }
Exemplo n.º 2
0
 /**
  * Overrides parent class
  * @return array
  */
 public function getPostVars()
 {
     $postVars = array("values");
     if ($this->strict) {
         $postVars = "strict";
     }
     if ($this->clear_blanks) {
         $postVars[] = "clear_blanks";
     }
     return array_merge(parent::getPostVars(), $postVars);
 }
Exemplo n.º 3
0
 protected function getPostVars()
 {
     return array_merge(parent::getPostVars(), array("problem", "comment", "debug"));
 }