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

Documentation is available at Modifier.php

  1. <?PHP
  2. /**
  3.  * Base class for patTemplate variable modifiers
  4.  *
  5.  * $Id: Modifier.php 219 2004-05-25 20:38:38Z schst $
  6.  *
  7.  * A modifier is used to modify a variable when it's parsed
  8.  * into the template.
  9.  *
  10.  * @package        patTemplate
  11.  * @subpackage    Modifiers
  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 variable modifiers
  20.  *
  21.  * $Id: Modifier.php 219 2004-05-25 20:38:38Z schst $
  22.  *
  23.  * A modifier is used to modify a variable when it's parsed
  24.  * into the template.
  25.  *
  26.  * @abstract
  27.  * @package        patTemplate
  28.  * @subpackage    Modifiers
  29.  * @author        Stephan Schmidt <[email protected]>
  30.  */
  31. {
  32.    /**
  33.     * modify the value
  34.     *
  35.     * @access    public
  36.     * @param    string        value
  37.     * @return    string        modified value
  38.     */
  39.     function modify$value$params array() )
  40.     {
  41.         return $value;
  42.     }
  43. }
  44. ?>

Documentation generated on Mon, 05 Mar 2007 21:10:56 +0000 by phpDocumentor 1.3.1