Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 117 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
class Outils {

        public static function recupererTableauConfig($parametres) {
                $tableau = array();
                $tableauPartiel = explode(',', Config::get($parametres));
                $tableauPartiel = array_map('trim', $tableauPartiel);
                foreach ($tableauPartiel as $champ) {
                        if (strpos($champ, '=') === false) {
                                $tableau[] = $champ;
                        } else {
                                list($cle, $val) = explode('=', $champ);
                                $clePropre = trim($cle);
                                $valeurPropre = trim($val);
                                $tableau[$clePropre] = $valeurPropre;
                        }
                }
                return $tableau;
        }
}
?>