Smarty
[ class tree: Smarty ] [ index: Smarty ] [ all elements ]

Source for file modifier.append_url.php

Documentation is available at modifier.append_url.php

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7.  
  8. /**
  9.  * smarty_modifier_append_url
  10.  */
  11. function smarty_modifier_append_url$pUrl$pKey$pValue=NULL {
  12.     $ret $pUrl;
  13.     ifisset$pValue ) ) {
  14.         $ret .= (strpos$pUrl'?' '&' '?').urlencode$pKey ).'='.urlencode$pValue );
  15.     }
  16.     return $ret;
  17. }

Documentation generated on Wed, 29 Jul 2015 13:57:09 +0000 by phpDocumentor 1.5.0-lsces