// // This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License. // // To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/1.0/ // // or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. // // Francais (brouillon): http://creativecommons.org/projects/international/fr/translated-license // ////////////////////////////////////////////////////////////////////////////////////////////////////// // Filtres // v0.2.0 $requiredFiles = array("filtres"); include_once("head.php"); if(!empty($_GET['id'])) { } else { $titre = "Filtres de texte"; if($err) $page = '

'.$err.'

'; else $page = '

Attention: ces fonctions sont expérimentales, à tester à vos risques et périls!

'; $liste = $filtres->liste($journal->courant['id']); if(count($liste) < 1) $page.= '

Aucun filtre n\'est défini.

'; else { $page.= ''; foreach($liste as $el) { $page.= ' '; } $page.= '
'.str2html($el['name']).' Supprimer
'; } $page.= '
Nouveau filtre

Expressions régulières acceptées.

Chercher Remplacer par

'; } page($titre,$page); ?>