. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../../fonctions/autoload.php"; class FiltreEgalite extends FiltreBase { public function __construct() { parent::__construct("`\#FILTRE_egalite\(([^\|]*)\|\|([^\|]*)\|\|([^\)]*)\)`"); } public function calcule($match) { return $match[1] == $match[2] ? $match[3] : ''; } } ?>