Source for file function.jurl.php

Documentation is available at function.jurl.php

  1. <?php
  2. /**
  3. @package    jelix
  4. @subpackage jtpl_plugin
  5. @version    $Id$
  6. @author     Jouanneau Laurent
  7. @copyright  2005-2006 Jouanneau laurent
  8. @link        http://www.jelix.org
  9. @licence    GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  10. */
  11.  
  12. /**
  13.  * function plugin :  write the url corresponding to the given jelix action
  14.  *
  15.  * @param jTpl $tpl template engine
  16.  * @param string $selector selector action
  17.  * @param array $params parameters for the url
  18.  * @param boolean $escape if true, then escape the string for html
  19.  */
  20. function jtpl_function_html_jurl($tpl$selector$params=array(),$escape=true)
  21. {
  22.  
  23.      echo jUrl::get($selector$params($escape?1:0));
  24. }

Documentation generated on Thu, 22 Mar 2012 22:13:19 +0100 by phpDocumentor 1.4.3