<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title>Latest snippets tagged filesystem php</title>
  <link rel="alternate" href="http://snippets.prendreuncafe.com/snippets/tagged/filesystem+php/order_by/date"></link>
  <id>http://snippets.prendreuncafe.com/snippets/tagged/filesystem+php/order_by/date</id>
  <updated>2007-01-29T19:43:31Z</updated>
  <author>
    <name>Symfony</name>
    <author_email>noreply@symfony-project.com</author_email>
  </author>
<entry>
  <title>[Symfony] Chemins systèmes</title>
  <link href="http://snippets.prendreuncafe.com/snippet/48"></link>
  <updated>2007-01-29T19:43:31Z</updated>
  <id>48</id>
  <summary type="html">Voici les chemins systèmes par défaut dans Symfony.

[code]
// root directory structure
'sf_cache_dir_name'   =&gt; 'cache',
'sf_log_dir_name'     =&gt; 'log',
'sf_lib_dir_name'     =&gt; 'lib',
'sf_model_dir_name'   =&gt; 'model',
'sf_web_dir_name'     =&gt; 'web',
'sf_data_dir_name'    =&gt; 'data',
'sf_config_dir_name'  =&gt; 'config',
'sf_apps_dir_name'    =&gt; 'apps',
 
// global directory structure
'sf_app_dir'        =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.$sf_app,
'sf_model_dir'      =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'model',
'sf_lib_dir'        =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'lib',
'sf_web_dir'        =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'web',
'sf_upload_dir'     =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'web'.DIRECTORY_SEPARATOR.'uploads',
'sf_base_cache_dir' =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'cache'.DIRECTORY_SEPARATOR.$sf_app,
'sf_cache_dir'      =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'cache'.DIRECTORY_SEPARATOR.$sf_app.DIRECTORY_SEPARATOR.$sf_environment,
'sf_log_dir'        =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'log',
'sf_data_dir'       =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'data',
'sf_config_dir'     =&gt; $sf_root_dir.DIRECTORY_SEPARATOR.'config',
[/code]</summary>
</entry>
</feed>