700 |
gduche |
1 |
<?php
|
1815 |
jpm |
2 |
// declare(encoding='UTF-8');
|
1793 |
jpm |
3 |
/**
|
|
|
4 |
* Classe contenant des méthodes utilitaires.
|
|
|
5 |
*
|
|
|
6 |
* Mettre les méthodes utilitaires dans cette classe, de temps en temps, si plusieurs méthodes ont une
|
|
|
7 |
* intéraction entre elles ou peuvent être regroupées. Les rassembler dans une nouvelle classe et mettre à
|
|
|
8 |
* jour le code.
|
|
|
9 |
*
|
1815 |
jpm |
10 |
* @category DEL
|
|
|
11 |
* @package Services
|
|
|
12 |
* @package Bibliotheque
|
|
|
13 |
* @version 0.1
|
|
|
14 |
* @author Mathias CHOUET <mathias@tela-botanica.org>
|
|
|
15 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
16 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
|
|
17 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
18 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
1793 |
jpm |
19 |
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
|
|
|
20 |
*/
|
700 |
gduche |
21 |
class Outils {
|
|
|
22 |
|
|
|
23 |
public static function recupererTableauConfig($parametres) {
|
|
|
24 |
$tableau = array();
|
|
|
25 |
$tableauPartiel = explode(',', Config::get($parametres));
|
|
|
26 |
$tableauPartiel = array_map('trim', $tableauPartiel);
|
|
|
27 |
foreach ($tableauPartiel as $champ) {
|
|
|
28 |
if (strpos($champ, '=') === false) {
|
|
|
29 |
$tableau[] = $champ;
|
|
|
30 |
} else {
|
|
|
31 |
list($cle, $val) = explode('=', $champ);
|
|
|
32 |
$clePropre = trim($cle);
|
|
|
33 |
$valeurPropre = trim($val);
|
|
|
34 |
$tableau[$clePropre] = $valeurPropre;
|
|
|
35 |
}
|
|
|
36 |
}
|
|
|
37 |
return $tableau;
|
|
|
38 |
}
|
1793 |
jpm |
39 |
}
|