Subversion Repositories eFlore/Applications.del

Rev

Rev 1997 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1997 Rev 2009
Line 57... Line 57...
57
	 */
57
	 */
58
	private function fusionner(array $ini) {
58
	private function fusionner(array $ini) {
59
		$this->config = array_merge($this->config, $ini);
59
		$this->config = array_merge($this->config, $ini);
60
	}
60
	}
Line -... Line 61...
-
 
61
 
-
 
62
	protected function traiterNomRessourceTirets($nom) {
-
 
63
		$noms = explode('-', $nom);
-
 
64
		for ($i=1; $i < count($noms); $i++) {
-
 
65
			$noms[$i] = ucfirst($noms[$i]);
-
 
66
		}
-
 
67
		$nom = implode('', $noms);
-
 
68
		return $nom;
-
 
69
	}
61
 
70
 
62
	protected function traiterNomMethodeExecuter($nom) {
71
	protected function traiterNomMethodeExecuter($nom) {
63
		$methode = 'executer';
72
		$methode = 'executer';
64
		$methode .= str_replace(' ', '', ucwords(str_replace('-', ' ', strtolower($nom))));
73
		$methode .= str_replace(' ', '', ucwords(str_replace('-', ' ', strtolower($nom))));
65
		return $methode;
74
		return $methode;