Subversion Repositories eFlore/Applications.cel

Rev

Rev 579 | Rev 2406 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 579 Rev 581
Line 97... Line 97...
97
	private function chargerCheminAutoload() {
97
	private function chargerCheminAutoload() {
98
		$chemins_communs = explode(';', self::$config['chemins']['autoload']);
98
		$chemins_communs = explode(';', self::$config['chemins']['autoload']);
99
		$chemins_communs = array_map('trim', $chemins_communs);
99
		$chemins_communs = array_map('trim', $chemins_communs);
100
		array_unshift($chemins_communs, '');
100
		array_unshift($chemins_communs, '');
Line -... Line 101...
-
 
101
		
-
 
102
		$chemins_widget = array();
101
		
103
		if (isset(self::$config[$this->widget]['autoload'])) {
102
		$chemins_widget = explode(';', self::$config[$this->widget]['autoload']);
104
			$chemins_widget = explode(';', self::$config[$this->widget]['autoload']);
103
		foreach ($chemins_widget as $cle => $chemin) {
105
			foreach ($chemins_widget as $cle => $chemin) {
-
 
106
				$chemins_widget[$cle] = self::$config['chemins']['widgetCourantDossier'].trim($chemin);
104
			$chemins_widget[$cle] = self::$config['chemins']['widgetCourantDossier'].trim($chemin);
107
			}
Line 105... Line 108...
105
		}
108
		}
106
		
109