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/OutputFilter.php

Documentation is available at OutputFilter.php

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

Documentation generated on Mon, 05 Mar 2007 21:12:30 +0000 by phpDocumentor 1.3.1