Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1729 → Rev 1728

/branches/topic-dbsingleton/jrest/lib/Cel.php
76,6 → 76,23
return $this->$prop;
}
 
// TODO: delete wrappers
public function requeter() {
return call_user_func_array(array(self::$bdd, __FUNCTION__), func_get_args());
}
// TODO: delete wrappers
protected function executer() {
return call_user_func_array(array(self::$bdd, __FUNCTION__), func_get_args());
}
// TODO: delete wrappers
protected function protegerRequete() {
return call_user_func_array(array(self::$bdd, __FUNCTION__), func_get_args());
}
// TODO: delete wrappers
protected function proteger() {
return call_user_func_array(array(self::$bdd, __FUNCTION__), func_get_args());
}
 
protected function protegerTableau(Array $tableau) {
foreach ($tableau as $id => $val) {
$tableau[$id] = $this->proteger($val);
83,6 → 100,20
return $tableau;
}
 
// TODO: delete wrappers
protected function executerRequeteSimple() {
return call_user_func_array(array(self::$bdd, __FUNCTION__), func_get_args());
}
// TODO: delete wrappers
public function executerRequete() {
return call_user_func_array(array(self::$bdd, __FUNCTION__), func_get_args());
}
 
// TODO: delete wrappers
protected function getTxt() {
return call_user_func_array(array(self::$bdd, __FUNCTION__), func_get_args());
}
 
//+----------------------------------------------------------------------------------------------------------------+
// TRAITEMENT des URLs et des PARAMÊTRES