Support Joomla!

Joomla! 1.5 Documentation

Packages

Package: patTemplate

Developer Network License

The Joomla! Developer Network content is © copyright 2006 by the individual contributors and can be used in accordance with the Creative Commons License, Attribution- NonCommercial- ShareAlike 2.5
Source code for file /pattemplate/patTemplate/InputFilter.php

Documentation is available at InputFilter.php

  1. <?PHP
  2. /**
  3.  * Base class for patTemplate input filter
  4.  *
  5.  * $Id: InputFilter.php 219 2004-05-25 20:38:38Z schst $
  6.  *
  7.  * An input filter is used to modify the stream
  8.  * before it has been processed by patTemplate_Reader.
  9.  *
  10.  * @package        patTemplate
  11.  * @subpackage    Filters
  12.  * @author        Stephan Schmidt <[email protected]>
  13.  */
  14.  
  15. // Check to ensure this file is within the rest of the framework
  16. defined('JPATH_BASE'or die();
  17.  
  18. /**
  19.  * Base class for patTemplate input filter
  20.  *
  21.  * $Id: InputFilter.php 219 2004-05-25 20:38:38Z schst $
  22.  *
  23.  * An input filter is used to modify the stream
  24.  * before it has been processed by patTemplate_Reader.
  25.  *
  26.  * @abstract
  27.  * @package        patTemplate
  28.  * @subpackage    Filters
  29.  * @author        Stephan Schmidt <[email protected]>
  30.  */
  31. {
  32.    /**
  33.     * apply the filter
  34.     *
  35.     * @access    public
  36.     * @param    string        data
  37.     * @return    string        filtered data
  38.     */
  39.     function apply$data )
  40.     {
  41.         return $data;
  42.     }
  43. }
  44. ?>

Documentation generated on Mon, 05 Mar 2007 21:08:07 +0000 by phpDocumentor 1.3.1