1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
<?php
/*
* Copyright (C) 2003-2004 Polytechnique.org
* http://opensource.polytechnique.org/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// dependency on PEAR
require_once 'Plugin/Skel.php';
/** This class describes a Diogenes filter plugin.
*/
class Diogenes_Plugin_Filter extends Diogenes_Plugin_Skel
{
/** Plugin name */
var $name = "Plugin_Filter";
/** Plugin description */
var $description = "Filter plugin skeleton";
/** Plugin version */
var $version = "0.1";
/** Plugin type : filter */
var $type = "filter";
/** Apply filtering to the input and return an output.
*
* The default implementation searches for a tag whose name matches
* the plugin name and replaces it by the output of the show() method.
*
* @param $input
*/
function filter($input)
{
global $page;
$name = $this->name;
$mask = "/(\{$name(\s+[^\}]*)?\})/";
$bits = preg_split($mask, $input, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
$output = "";
while($bit = array_shift($bits)) {
$matches = array();
if (preg_match($mask, $bit, $matches)) {
if ($matches[2])
{
$argstr = array_shift($bits);
} else {
$argstr = "";
}
$argbits = preg_split("/\s/", trim($argstr));
$args = array();
foreach($argbits as $argbit)
{
if (preg_match('/([a-zA-Z]+)=([\'"])(.*)\2$/', $argbit, $matches)) {
$args[$matches[1]] = $matches[3];
}
}
$output .= $this->show($args);
} else {
$output .= $bit;
}
}
return $output;
}
/** Show an instance of the plugin. This is called by filter() every time
* a tag representing the plugin is found.
*/
function show()
{
return '';
}
}
?>
|