Example #1
0
 function __construct()
 {
     parent::CI_Input();
     /* allow $_GET */
     $pos = strrpos($_SERVER['REQUEST_URI'], '?');
     $qry = is_int($pos) ? substr($_SERVER['REQUEST_URI'], ++$pos) : '';
     parse_str($qry, $_GET);
     /* allow $_GET */
 }
Example #2
0
 function MY_Input()
 {
     return parent::CI_Input();
 }
 function MY_Input()
 {
     parent::CI_Input();
 }
Example #4
0
 public function __construct()
 {
     $this->_POST_ORIG = $_POST;
     // save the original before it is modified
     parent::CI_Input();
 }
Example #5
0
 /**
  * Constructor
  *
  * @return void
  * @author Ed Finkler
  */
 public function MY_Input()
 {
     parent::CI_Input();
     $this->_makeInspektSuperCage();
 }
Example #6
0
 /**
  * Constructor
  *
  * @access	public
  */
 function SP_Input()
 {
     parent::CI_Input();
 }