message_die(GENERAL_ERROR,"Setting $this->key haven't any get indication. Please set <object> and <property> / or a custom <handler><get></get></handler> block.","Settings error");
}
/*
* Sets a new value
* @param $value the setting new value
* @return boolean true if the setting have been successfully set ; otherwise, false.
*/
functionset($value){
//Validates data
if($this->regExp){
if(!ereg('^'.$this->regExp.'$',$value)){
$this->lastError="Invalid format for $this->key setting";
message_die(GENERAL_ERROR,"Setting $this->key haven't any set indication. Please set <object> (and wheter <method>, whether <property>) or a custom <handler><set></set></handler> block.","Settings error");
}
/*
* Saves setting
* @return mixed the SETTINGS_SAVE_METHOD method value, or false if there's no method call;