[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/libraries/joomla/template/module/modifier/ -> SEF.php (source)

   1  <?php
   2  /**
   3  * patTemplate modfifier for Search Engine Friendly URL's
   4  * @version        $Id: SEF.php 14401 2010-01-26 14:10:00Z louis $
   5  * @package        Joomla.Framework
   6  * @subpackage    Template
   7  * @copyright    Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
   8  * @license        GNU/GPL, see LICENSE.php
   9  * Joomla! is free software and parts of it may contain or be derived from the
  10  * GNU General Public License or other free or open source software licenses.
  11  * See COPYRIGHT.php for copyright notices and details.
  12  */
  13  
  14  // Check to ensure this file is within the rest of the framework
  15  defined('JPATH_BASE') or die();
  16  
  17  /**
  18   * JTemplate Translate modifier
  19   *
  20   * @package     Joomla.Framework
  21   * @subpackage        Template
  22   * @since        1.5
  23   */
  24  class patTemplate_Modifier_SEF extends patTemplate_Modifier
  25  {
  26      /**
  27      * modify the value
  28      *
  29      * @access    public
  30      * @param    string        value
  31      * @return    string        modified value
  32      */
  33  	function modify( $value, $params = array() )
  34      {
  35          return JRoute::_( $value );
  36      }
  37  }


Generated: Wed Mar 28 15:54:07 2012 Cross-referenced by PHPXref 0.7.1