Luxbum.net - Script de galerie photo

Changeset 232

Show
Ignore:
Timestamp:
07/24/07 23:07:13 (1 year ago)
Author:
nicolas
Message:

plugin to encode URL in templates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/api/Pluf/Template.php

    r201 r232  
    205205} 
    206206 
     207/** 
     208 * modifier plugin : escape an url 
     209 * 
     210 * @param string $string input date string 
     211 * @param boolean $$replaceSlash replace %2F by / ; or not 
     212 * @return string|void 
     213 */ 
     214function Pluf_Template_escurl($string, $replaceSlash = true) { 
     215   $string = rawurlencode($string); 
     216   if ($replaceSlash) { 
     217      return str_replace('%2F', '/', $string); 
     218   } 
     219   return $string; 
     220} 
     221 
    207222?> 
  • trunk/api/Pluf/Template/Compiler.php

    r201 r232  
    9090                                 'escxml' => 'htmlspecialchars',  
    9191                                 'strip_tags' => 'strip_tags',  
    92                                  'escurl' => 'rawurlencode', 
     92                                 'escurl' => 'Pluf_Template_escurl', 
    9393                                 'capitalize' => 'ucwords', 
    9494                                 'debug' => 'var_export',