Commit | Line | Data |
---|---|---|
c495c100 P |
1 | <?php |
2 | ||
3 | // cette fonction n'est pas appelee dans les balises html : html|code|cadre|frame|script | |
4 | function insertions_rempl($texte) { | |
5 | if (!isset($GLOBALS['meta']['cs_insertions'])) insertions_installe(); | |
6 | $ins = unserialize($GLOBALS['meta']['cs_insertions']); | |
7 | $texte = str_replace($ins[0][0], $ins[0][1], $texte); | |
8 | return preg_replace($ins[1][0], $ins[1][1], $texte); | |
9 | } | |
10 | ||
11 | // Fonctions de traitement | |
12 | function insertions_pre_propre($texte) { | |
13 | return cs_echappe_balises('', 'insertions_rempl', $texte); | |
14 | } | |
15 | ||
16 | ?> |