home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / HTML / Template / Flexy / example.ini < prev    next >
Encoding:
INI File  |  2008-07-02  |  1.2 KB  |  36 lines

  1. ;
  2. ; To use config file with HTML_Template_Flexy
  3. ; $config = parse_ini_file('example.ini',TRUE)
  4. ; $options = &PEAR::getStaticProperty('HTML_Template_Flexy','options');
  5. ; $options = $config['HTML_Template_Flexy'];
  6. ;
  7. [HTML_Template_Flexy]
  8.  
  9. compileDir =  /home/me/Projects/myapplication/compiled_templates
  10.         ; where the compiled templates go.
  11.         
  12. templateDir =  /home/me/Projects/myapplication/templates
  13.         ; where the original templates are.
  14.         
  15. ;templateDir =  /home/me/Projects/myapplication/english;/home/me/Projects/myapplication/spanish
  16.         ; or use multiple paths..
  17.         
  18. forceCompile = 0
  19.         ; force compile template every time...
  20.         
  21. filters = Php,SimpleTags,BodyOnly
  22.         ; Order of Classes to use as filters.
  23.  
  24.  
  25. ;url_rewrite     = "/images/:/php_sharpsite/images/"
  26.         ; rewrite src and href urls from /images/ to /php_sharpsite/images/
  27.  
  28. ;url_rewrite     = "/abc/:/xyz/,/bbb/:/zzz/"
  29.         ; rewrite src and href urls from /abc/ to /xyz/ and /bbb/ to /zzz/
  30.         ; not it is only on the left of the url (not anywhere inside it)
  31.  
  32.         
  33. ;flexyIgnore     = 0
  34.         ; this turns of the transformation of HTML form elements into 
  35.         ; HTML_Template_Flexy_Element's, either globally, or you
  36.         ; can use it in a constructor to turn it off per template.