function _getNewValue() { parent::_getNewValue(); if (!isset($this->request[$this->name])) { $this->newValue = $this->false_value; } }
/** * if detect a $_POST["fieldname"] it acquire the new value * this class override this method for "formatting" purposes * * @access private * @return void */ function _getNewValue() { parent::_getNewValue(); if (isset($this->request[$this->name])) { $this->newValue = entities_to_ascii($this->newValue); } }
function _getNewValue() { parent::_getNewValue(); if (isset($this->request[$this->name])) { $this->newValue = human_to_dbdate($this->newValue, $this->format); } }
function _getNewValue() { parent::_getNewValue(); if (isset($this->request[$this->name]) && $this->request[$this->name] != '') { if ($this->encrypt) { $ci =& get_instance(); $this->newValue = $ci->encrypt->hash($this->newValue, 'md5'); } else { show_error("you must load the CI 'encrtypt' library"); } } else { $this->db_name = null; } }
function _getNewValue() { parent::_getNewValue(); }