2035 |
gduche |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Description :
|
|
|
4 |
*
|
|
|
5 |
* @package Applette
|
|
|
6 |
* @subpackage Contenu_Local
|
|
|
7 |
// Auteur principal :
|
2036 |
gduche |
8 |
* @author Grégoire <gregoire@tela-botanica.org>
|
2035 |
gduche |
9 |
// Autres auteurs :
|
|
|
10 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
11 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
12 |
* @version $$Id$$
|
2036 |
gduche |
13 |
* @copyright 1999-2009 Tela Botanica (accueil@tela-botanica.org)
|
2035 |
gduche |
14 |
*/
|
|
|
15 |
|
|
|
16 |
/*
|
|
|
17 |
* Applette : contenu_local
|
|
|
18 |
*
|
|
|
19 |
* Cherche une traduction au contenu donné en paramètre.
|
|
|
20 |
* Les traductions doivent être placées dans un fichier i18n.ini dans le répertoire langue du site (ex: sites/mon_site/fr/i18n.ini)
|
|
|
21 |
* Affiche le contenu dans la locale en cours. Sinon, trouve le contenu de la locale par défaut.
|
|
|
22 |
* Si aucune traduction n'est présente, affiche le nom de la variable (GEN_I18N_ID_DEFAUT)
|
|
|
23 |
*
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
27 |
// | ENTETE du PROGRAMME |
|
|
|
28 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
29 |
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = 'afficherContenuLocal';
|
2037 |
gduche |
30 |
$GLOBALS['_GEN_commun']['info_applette_balise'] = '\{\{[Cc]ontenu_local'.
|
|
|
31 |
'(?:\s*'.
|
|
|
32 |
'(?:'.
|
|
|
33 |
'(var="[^"]*")|'.
|
|
|
34 |
')'.
|
|
|
35 |
')+'.
|
|
|
36 |
'\s*\}\}';
|
2035 |
gduche |
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | CORPS du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
44 |
// | LISTE de FONCTIONS |
|
|
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
46 |
|
|
|
47 |
/**
|
|
|
48 |
* Fonction afficherContenuLocal() - retourne la traduction d'une variable donnée
|
|
|
49 |
*
|
|
|
50 |
* Retourne la traduction d'une variable donnée. Si la traduction n'est pas trouvée dans la
|
|
|
51 |
* langue en cours, retourne la valeur de la langue par défaut.
|
|
|
52 |
* Si elle n'est pas définie, retourne le nom de la variable.
|
|
|
53 |
*
|
|
|
54 |
* @param string nom de la variable a chercher dans les fichiers de configuration ($GLOBALS)
|
|
|
55 |
*/
|
|
|
56 |
|
|
|
57 |
function afficherContenuLocal($tab_applette_arguments, $_GEN_commun)
|
|
|
58 |
{
|
2037 |
gduche |
59 |
//Gestion de la langue par défaut
|
2035 |
gduche |
60 |
$langue = $GLOBALS['_GEN_commun']['i18n'];
|
2037 |
gduche |
61 |
|
2035 |
gduche |
62 |
if ($langue == '') {
|
2037 |
gduche |
63 |
$langue = GEN_I18N_ID_DEFAUT;
|
2035 |
gduche |
64 |
}
|
|
|
65 |
|
|
|
66 |
trouverI18N($langue);
|
2037 |
gduche |
67 |
|
2035 |
gduche |
68 |
$lang = $GLOBALS['_PAPYRUS_']['page']['langue_site'];
|
|
|
69 |
|
2037 |
gduche |
70 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
71 |
// Gestion des arguments
|
|
|
72 |
$balise = $tab_applette_arguments[0];
|
|
|
73 |
$tab_arguments = $tab_applette_arguments;
|
|
|
74 |
unset($tab_arguments[0]);
|
|
|
75 |
foreach($tab_arguments as $argument) {
|
|
|
76 |
if ($argument != '') {
|
|
|
77 |
$tab_parametres = explode('=', $argument, 2);
|
|
|
78 |
$options[$tab_parametres[0]] = trim($tab_parametres[1], '"');
|
|
|
79 |
}
|
|
|
80 |
}
|
|
|
81 |
|
|
|
82 |
$cle = $options["var"];
|
|
|
83 |
if (isset($cle))
|
2035 |
gduche |
84 |
{
|
2037 |
gduche |
85 |
// Si l'argument a bien été passé, on cherche la traduction
|
|
|
86 |
if (isset($GLOBALS['_CONTENU_LOCAL_']['TRANS'][$lang][$cle])&&(!empty($GLOBALS['_CONTENU_LOCAL_']['TRANS'][$lang][$cle])))
|
2035 |
gduche |
87 |
{
|
|
|
88 |
// La traduction extiste dans la langue courante
|
2037 |
gduche |
89 |
return $GLOBALS['_CONTENU_LOCAL_']['TRANS'][$lang][$cle];
|
2035 |
gduche |
90 |
}
|
2037 |
gduche |
91 |
elseif (isset($GLOBALS['_CONTENU_LOCAL_']['TRANS'][GEN_I18N_ID_DEFAUT][$cle])&&(!empty($GLOBALS['_CONTENU_LOCAL_']['TRANS'][GEN_I18N_ID_DEFAUT][$cle]))){
|
2035 |
gduche |
92 |
// La traduction dans la langue par défaut est définie
|
2037 |
gduche |
93 |
return $GLOBALS['_CONTENU_LOCAL_']['TRANS'][GEN_I18N_ID_DEFAUT][$cle];
|
2035 |
gduche |
94 |
|
|
|
95 |
}
|
|
|
96 |
|
|
|
97 |
}
|
|
|
98 |
|
|
|
99 |
// Si rien n'a été retourné précédemment, on retourne le nom de la clé.
|
|
|
100 |
|
|
|
101 |
return $cle;
|
|
|
102 |
}
|
|
|
103 |
|
|
|
104 |
|
|
|
105 |
/**
|
2037 |
gduche |
106 |
* Grégoire :
|
|
|
107 |
*
|
|
|
108 |
* Fonction trouverI18N :
|
|
|
109 |
* Si le fichier n'a pas déjà été chargé dans la variable $GLOBALS,
|
|
|
110 |
* on cherche un fichier i18n.ini dans le site courant et la langue courante
|
2035 |
gduche |
111 |
* Enregistre dans les variables $GLOBALS
|
|
|
112 |
* @param string la langue a charger
|
|
|
113 |
* */
|
2037 |
gduche |
114 |
|
2035 |
gduche |
115 |
function trouverI18N($langue) {
|
|
|
116 |
//Définir le dossier ou se trouvent les sites
|
2037 |
gduche |
117 |
$dir = PAP_CHEMIN_RACINE."sites/".$GLOBALS['_GEN_commun']['info_site']->gs_code_alpha;
|
2035 |
gduche |
118 |
|
2037 |
gduche |
119 |
// 1. essayer d'ouvrir le dossier avec la langue courante
|
|
|
120 |
if (file_exists($dir."/".$langue."/i18n.ini")) {
|
|
|
121 |
|
|
|
122 |
//Vérifier si le fichier a été chargé
|
|
|
123 |
if (!isset($GLOBALS['_CONTENU_LOCAL_']['LOADED_FILES'][$dir."/".$langue."/i18n.ini"])) {
|
2035 |
gduche |
124 |
|
2037 |
gduche |
125 |
$ini_array = parse_ini_file($dir."/".$langue."/i18n.ini");
|
2035 |
gduche |
126 |
|
2037 |
gduche |
127 |
//Le fichier ini a été lu, définir les variables globales
|
|
|
128 |
foreach ($ini_array as $key => $valeur)
|
|
|
129 |
{
|
|
|
130 |
$GLOBALS['_CONTENU_LOCAL_']['TRANS'][$langue][$key] = $valeur;
|
2035 |
gduche |
131 |
}
|
|
|
132 |
|
2037 |
gduche |
133 |
$GLOBALS['_CONTENU_LOCAL_']['LOADED_FILES'][$dir."/".$langue."/i18n.ini"] = true;
|
|
|
134 |
|
|
|
135 |
}
|
2035 |
gduche |
136 |
}
|
2037 |
gduche |
137 |
|
2035 |
gduche |
138 |
}
|
|
|
139 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
140 |
// | PIED du PROGRAMME |
|
|
|
141 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
142 |
|
|
|
143 |
|
|
|
144 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
145 |
*/
|
|
|
146 |
?>
|