Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1875 → Rev 2011

/trunk/widget/bibliotheque/WidgetCommun.php
59,6 → 59,15
$this->config = array_merge($this->config, $ini);
}
 
protected function traiterNomRessourceTirets($nom) {
$noms = explode('-', $nom);
for ($i=1; $i < count($noms); $i++) {
$noms[$i] = ucfirst($noms[$i]);
}
$nom = implode('', $noms);
return $nom;
}
 
protected function traiterNomMethodeExecuter($nom) {
$methode = 'executer';
$methode .= str_replace(' ', '', ucwords(str_replace('-', ' ', strtolower($nom))));