05-Configuring-Symfony.txt 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  1. Chapter 5 - Configuring Symfony
  2. ===============================
  3. To be simple and easy to use, symfony defines a few conventions, which should satisfy the most common requirements of standard applications without need for modification. However, using a set of simple and powerful configuration files, it is possible to customize almost everything about the way the framework and your application interact with each other. With these files, you will also be able to add specific parameters for your applications.
  4. This chapter explains how the configuration system works:
  5. * The symfony configuration is kept in files written in YAML, although you can always choose another format.
  6. * Configuration files are at the project, application, and module levels in a project's directory structure.
  7. * You can define several sets of configuration settings; in symfony, a set of configuration is called an environment.
  8. * The values defined in the configuration files are available from the PHP code of your application.
  9. * Additionally, symfony authorizes PHP code in YAML files and other tricks to make the configuration system even more flexible.
  10. The Configuration System
  11. ------------------------
  12. Regardless of purpose, most web applications share a common set of characteristics. For instance, some sections can be restricted to a subset of users, or the pages can be decorated by a layout, or a form can be filled with the user input after a failed validation. A framework defines a structure for emulating these characteristics, and the developer can further tweak them by changing a configuration setting. This strategy saves a lot of development time, since many changes don't require a single line of code, even if there is a lot of code behind. It is also much more efficient, because it ensures such information can be maintained in a single and easily identifiable location.
  13. However, this approach has two serious drawbacks:
  14. * Developers end up writing endlessly complex XML files.
  15. * In a PHP architecture, every request takes much longer to process.
  16. Taking these disadvantages into account, symfony uses configuration files only for what they are best at doing. As a matter of fact, the ambition of the configuration system in symfony is to be:
  17. * Powerful: Almost every aspect that can be managed using configuration files is managed using configuration files.
  18. * Simple: Many aspects of configuration are not shown in a normal application, since they seldom need to be changed.
  19. * Easy: Configuration files are easy to read, to modify, and to create by the developer.
  20. * Customizable: The default configuration language is YAML, but it can be INI, XML, or whatever format the developer prefers.
  21. * Fast: The configuration files are never processed by the application but by the configuration system, which compiles them into a fast-processing chunk of code for the PHP server.
  22. ### YAML Syntax and Symfony Conventions
  23. For its configuration, symfony uses the YAML format by default, instead of more traditional INI or XML formats. YAML shows structure through indentation and is fast to write. Its advantages and basic rules were already described in Chapter 1. However, you need to keep a few conventions in mind when writing YAML files. This section introduces several of the most prominent conventions. For a complete dissertation on the topic, visit the YAML website ([http://www.yaml.org/](http://www.yaml.org/)).
  24. First of all, never use tabs in YAML files; use spaces instead. YAML parsers can't understand files with tabs, so indent your lines with spaces (a double blank is the symfony convention for indentation), as shown in Listing 5-1.
  25. Listing 5-1 - YAML Files Forbid Tabs
  26. # Never use tabs
  27. all:
  28. -> mail:
  29. -> -> webmaster: webmaster@example.com
  30. # Use blanks instead
  31. all:
  32. mail:
  33. webmaster: webmaster@example.com
  34. If your parameters are strings starting or ending with spaces,
  35. contain special characters (such as the "octothorpe" (#) or comma),
  36. or key words such as "no, false, off" (where a string is intended) you must
  37. enclose the value in single quotes, as shown in Listing 5-2.
  38. Listing 5-2 - Nonstandard Strings Should Be Enclosed in Single Quotes
  39. error1: This field is compulsory
  40. error2: ' This field is compulsory '
  41. error3: 'Don''t leave this field blank' # Single quotes must be doubled
  42. error4: 'Enter a # symbol to define an extension number'
  43. i18n: 'no' # if we left off the quotes here, a boolean false would be returned
  44. You can define long strings in multiple lines, and also multiple-line strings, with the special string headers (> and |) plus an additional indentation. Listing 5-3 demonstrates this convention.
  45. Listing 5-3 - Defining Long and Multiline Strings
  46. # Folded style, introduced by >
  47. # Each line break is folded to a space
  48. # Makes YAML more readable
  49. accomplishment: >
  50. Mark set a major league
  51. home run record in 1998.
  52. # Literal style, introduced by |
  53. # All line breaks count
  54. # Indentation doesn't appear in the resulting string
  55. stats: |
  56. 65 Home Runs
  57. 0.278 Batting Average
  58. To define a value as an array, enclose the elements in square brackets or use the expanded syntax with dashes, as shown in Listing 5-4.
  59. Listing 5-4 - YAML Array Syntax
  60. # Shorthand syntax for arrays
  61. players: [ Mark McGwire, Sammy Sosa, Ken Griffey ]
  62. # Expanded syntax for arrays
  63. players:
  64. - Mark McGwire
  65. - Sammy Sosa
  66. - Ken Griffey
  67. To define a value as an associative array, or hash, enclose the elements in
  68. curly brackets and always insert a spaces between the key and the value in the
  69. `key: value` pair, and any list items separated by commas. You can also use the
  70. expanded syntax by adding indentation and a carriage return for every new key,
  71. as shown in Listing 5-5.
  72. Listing 5-5 - YAML Associative Array Syntax
  73. # Incorrect syntax, blanks are missing after the colons and comma
  74. mail: {webmaster:webmaster@example.com,contact:contact@example.com}
  75. # Correct shorthand syntax for associative arrays
  76. mail: { webmaster: webmaster@example.com, contact: contact@example.com }
  77. # Expanded syntax for associative arrays
  78. mail:
  79. webmaster: webmaster@example.com
  80. contact: contact@example.com
  81. To give a Boolean value, you can choose from a number of representations.
  82. Listing 5-6 shows the complete listing of values that will be converted to
  83. boolean by the parser, provided they are not enclosed in quotes.
  84. Listing 5-6 - YAML Boolean Values Syntax
  85. true_values: [ on, true, +, yes, y ]
  86. false_values: [ off, false, -, no, n ]
  87. Don't hesitate to add comments (starting with the hash mark, `#`) and extra spaces to values to make your YAML files more readable, as shown in Listing 5-7.
  88. Listing 5-7 - YAML Comments Syntax and Value Alignment
  89. # This is a comment line
  90. mail:
  91. webmaster: webmaster@example.com
  92. contact: contact@example.com
  93. admin: admin@example.com # extra spaces allow nice alignment of values
  94. In some symfony configuration files, you will sometimes see lines that start with a hash mark (and, as such, ignored by the YAML parsers) but look like usual settings lines. This is a symfony convention: the default configuration, inherited from other YAML files located in the symfony core, is repeated in commented lines in your application configuration, for your information. If you want to change the value of such a parameter, you need to uncomment the line first, as shown in Listing 5-8.
  95. Listing 5-8 - Default Configuration Is Shown Commented
  96. # The cache is off by default
  97. settings:
  98. # cache: off
  99. # If you want to change this setting, uncomment the line first
  100. settings:
  101. cache: on
  102. Symfony sometimes groups the parameter definitions into categories. All settings of a given category appear indented under the category header. Structuring long lists of `key: value` pairs by grouping them into categories improves the readability of the configuration. Category headers start with a dot (`.`). Listing 5-9 shows an example of categories.
  103. Listing 5-9 - Category Headers Look Like Keys, But Start with a Dot
  104. all:
  105. .general:
  106. tax: 19.6
  107. mail:
  108. webmaster: webmaster@example.com
  109. In this example, `mail` is a key and `general` is only a category header. Everything works as if the category header didn't exist, as shown in Listing 5-10. The `tax` parameter is actually a direct child of the `all` key. However using categories helps symfony dealing with arrays that are beneath the `all` key.
  110. Listing 5-10 - Category Headers Are Only There for Readability and Are Actually Ignored
  111. all:
  112. tax: 19.6
  113. mail:
  114. webmaster: webmaster@example.com
  115. >**SIDEBAR**
  116. >And if you don't like YAML
  117. >
  118. >YAML is just an interface to define settings to be used by PHP code, so the configuration defined in YAML files ends up being transformed into PHP. After browsing an application, check its cached configuration (in `cache/frontend/dev/config/`, for instance). You will see the PHP files corresponding to your YAML configuration. You will learn more about the configuration cache later in this chapter.
  119. >
  120. >The good news is that if you don't want to use YAML files, you can still do what the configuration files do by hand, in PHP or via another format (XML, INI, and so on). Throughout this book, you will meet alternative ways to define configuration without YAML, and you will even learn to replace the symfony configuration handlers (in Chapter 19). If you use them wisely, these tricks will enable you to bypass configuration files or define your own configuration format.
  121. ### Help, a YAML File Killed My App!
  122. The YAML files are parsed into PHP hashes and arrays, and then the values are used in various parts of the application to modify the behavior of the view, the controller, or the model. Many times, when there is a problem in a YAML file, it is not detected until the value actually needs to be used. Moreover, the error or exception that is thrown then is usually not clearly related to the YAML configuration file.
  123. If your application suddenly stops working after a configuration change, you should check that you didn't make any of the common mistakes of the inattentive YAML coder:
  124. * You miss a space between a key and its value:
  125. key1:value1 # A space is missing after the :
  126. * Keys in a sequence are not indented the same way:
  127. all:
  128. key1: value1
  129. key2: value2 # Indentation is not the same as the other sequence members
  130. key3: value3
  131. * There is a reserved YAML character in a key or a value, without string delimiters:
  132. message: tell him: go way # :, [, ], { and } are reserved in YAML
  133. message: 'tell him: go way' # Correct syntax
  134. * You are modifying a commented line:
  135. # key: value # Will never be taken into account due to the leading #
  136. * You set values with the same key name twice at the same level:
  137. key1: value1
  138. key2: value2
  139. key1: value3 # key1 is defined twice, the value is the last one defined
  140. * You think that the setting takes a special type, while it is always a string, until you convert it:
  141. income: 12,345 # Until you convert it, this is still a string
  142. Overview of the Configuration Files
  143. -----------------------------------
  144. Configuration is distributed into files, by subject. The files contain parameter definitions, or settings. Some of these parameters can be overridden at several levels (project, application, and module); some are specific to a certain level. The next chapters will deal with the configuration files related to their main topic, and Chapter 19 will deal with advanced configuration.
  145. ### Project Configuration
  146. There are a few project configuration files by default. Here are the files that can be found in the `myproject/config/` directory:
  147. * `ProjectConfiguration.class.php`: This is the very first file included by any request or command. It contains the path to the framework files, and you can change it to use a different installation. See Chapter 19 for advanced usage of this file.
  148. * `databases.yml`: This is where you define the access and connection settings to the database (host, login, password, database name, and so on). Chapter 8 will tell you more about it. It can also be overridden at the application level.
  149. * `properties.ini`: This file holds a few parameters used by the command line tool, including the project name and the connection settings for distant servers. See Chapter 16 for an overview of the features using this file.
  150. * `rsync_exclude.txt`: This file specifies which directories must be excluded from the synchronization between servers. It is discussed in Chapter 16.
  151. * `schema.yml` and `propel.ini`: These are data access configuration files used by Propel (symfony's ORM layer). They are used to make the Propel libraries work with the symfony classes and the data of your project. `schema.yml` contains a representation of the project's relational data model. `propel.ini` is automatically generated, so you probably do not need to modify it. If you don't use Propel, these files are not needed. Chapter 8 will tell you more about their use.
  152. These files are mostly used by external components or by the command line, or they need to be processed even before any YAML parsing program can be loaded by the framework. That's why some of them don't use the YAML format.
  153. ### Application Configuration
  154. The main part of the configuration is the application configuration. It is defined in the front controller (in the `web/` directory) for the main configuration, in YAML files located in the application `config/` directory, in `i18n/` directories for the internationalization files, and in the framework files for invisible--although useful--additional application configuration.
  155. #### Front Controller Configuration
  156. The very first application configuration is actually found in the front controller; that is the very first script executed by a request. Take a look at the default `web/index.php` in Listing 5-11.
  157. Listing 5-11 - The Default Production Front Controller
  158. [php]
  159. <?php
  160. require_once(dirname(__FILE__).'/../config/ProjectConfiguration.class.php');
  161. $configuration = ProjectConfiguration::getApplicationConfiguration('frontend', 'prod', false);
  162. sfContext::createInstance($configuration)->dispatch();
  163. After defining the name of the application (`frontend`) and the environment (`prod`), the application configuration is called before creating a context and dispatching. So a few useful methods are available in the application configuration class:
  164. * `$configuration->getRootDir()`: Project root directory (normally, should remain at its default value, unless you change the file structure).
  165. * `$configuration->getApplication()`: Application name in the project. Necessary to compute file paths.
  166. * `$configuration->getEnvironment()`: Environment name (`prod`, `dev`, or any other project-specific environment that you define). Will determine which configuration settings are to be used. Environments are explained later in this chapter.
  167. * `$configuration->isDebug()`: Activation of the debug mode (see Chapter 16 for details).
  168. If you want to change one of these values, you probably need an additional front controller. The next chapter will tell you more about front controllers and how to create a new one.
  169. #### Main Application Configuration
  170. The main application configuration is stored in files located in the `myproject/apps/frontend/config/` directory:
  171. * `app.yml`: This file should contain the application-specific configuration; that is, global variables defining business or applicative logic specific to an application, which don't need to be stored in a database. Tax rates, shipping fares, and e-mail addresses are often stored in this file. It is empty by default.
  172. * `frontendConfiguration.class.php`: This class bootstraps the application, which means that it does all the very basic initializations to allow the application to start. This is where you can customize your directory structure or add application-specific constants (Chapter 19 provides more details). It inherits from the `sfApplicationConfiguration` class.
  173. * `factories.yml`: Symfony defines its own class to handle the view, the request, the response, the session, and so on. If you want to use your own classes instead, this is where you can specify them. Chapter 17 provides more information.
  174. * `filters.yml`: Filters are portions of code executed for every request. This file is where you define which filters are to be processed, and it can be overridden for each module. Chapter 6 discusses filters in more detail.
  175. * `routing.yml`: The routing rules, which allow transforming unreadable and unbookmarkable URLs into "smart" and explicit ones, are stored in this file. For new applications, a few default rules exist. Chapter 9 is all about links and routing.
  176. * `settings.yml`: The main settings of a symfony application are defined in this file. This is where you specify if your application has internationalization, its default language, the request timeout and whether caching is turned on. With a one-line change in this file, you can shut down the application so you can perform maintenance or upgrade one of its components. The common settings and their use are described in Chapter 19.
  177. * `view.yml`: The structure of the default view (name of the layout, default style sheets and JavaScript files to be included, default content-type, and so on) is set in this file. Chapter 7 will tell you more about this file. These settings can be overridden for each module.
  178. #### Internationalization Configuration
  179. Internationalized applications can display pages in several languages. This requires specific configuration. There are two configuration places for internationalization:
  180. * The `factories.yml` of the application `config/` directory: This file defines the i18n factory and general translation options, such as the default culture for the translation, whether the translations come from files or a database, and their format.
  181. * Translation files in the application `i18n/` directory: These are basically dictionaries, giving a translation for each of the phrases used in the application templates so that the pages show translated text when the user switches language.
  182. Note that the activation of the i18n features is set in the `settings.yml` file. You will find more information about these features in Chapter 13.
  183. #### Additional Application Configuration
  184. A second set of configuration files is in the symfony installation directory (in `$sf_symfony_lib_dir/config/config/`) and doesn't appear in the configuration directory of your applications. The settings defined there are defaults that seldom need to be modified, or that are global to all projects. However, if you need to modify them, just create an empty file with the same name in your `myproject/apps/frontend/config/` directory, and override the settings you want to change. The settings defined in an application always have precedence over the ones defined in the framework. The following are the configuration files in the symfony installation config/ directory:
  185. * `autoload.yml`: This file contains the settings of the autoloading feature. This feature exempts you from requiring custom classes in your code if they are located in specific directories. It is described in detail in Chapter 19.
  186. * `core_compile.yml` and `bootstrap_compile.yml`: These are lists of classes to be included to start an application (in `bootstrap_compile.yml`) and to process a request (in `core_compile.yml`). These classes are actually concatenated into an optimized PHP file without comments, which will accelerate the execution by minimizing the file access operations (one file is loaded instead of more than forty for each request). This is especially useful if you don't use a PHP accelerator. Optimization techniques are described in Chapter 18.
  187. * `config_handlers.yml`: This is where you can add or modify the handlers used to process each configuration file. Chapter 19 provides more details.
  188. ### Module Configuration
  189. By default, a module has no specific configuration. But, if required, you can override some application-level settings for a given module. For instance, you might do this to include a specific JavaScript file for all actions of a module. You can also choose to add new parameters restricted to a specific module to preserve encapsulation.
  190. As you may have guessed, module configuration files must be located in a `myproject/apps/frontend/modules/mymodule/config/` directory. These files are as follows:
  191. * `generator.yml`: For modules generated according to a database table (scaffoldings and administrations), this file defines how the interface displays rows and fields, and which interactions are proposed to the user (filters, sorting, buttons, and so on). Chapter 14 will tell you more about it.
  192. * `module.yml`: This file contains custom parameters specific to a module (equivalent to the `app.yml`, but at the module level) and action configuration. Chapter 6 provides more details.
  193. * `security.yml`: This file sets access restrictions for actions. This is where you specify that a page can be viewed only by registered users or by a subset of registered users with special permissions. Chapter 6 will tell you more about it.
  194. * `view.yml`: This file contains configuration for the views of one or all of the actions of a module. It overrides the application `view.yml` and is described in Chapter 7.
  195. Most module configuration files offer the ability to define parameters for all the views or all the actions of a module, or for a subset of them.
  196. >**SIDEBAR**
  197. >Too many files?
  198. >
  199. >You might be overwhelmed by the number of configuration files present in the application. But please keep the following in mind:
  200. >
  201. >Most of the time, you don't need to change the configuration, since the default conventions match the most common requirements. Each configuration file is related to a particular feature, and the next chapters will detail their use one by one. When you focus on a single file, you can see clearly what it does and how it is organized. For professional web development, the default configuration is often not completely adapted. The configuration files allow for an easy modification of the symfony mechanisms without code. Imagine the amount of PHP code necessary to achieve the same amount of control. If all the configuration were located in one file, not only would the file be completely unreadable, but you could not redefine configuration at several levels (see the "Configuration Cascade" section later in this chapter).
  202. >
  203. >The configuration system is one of the great strengths of symfony, because it makes symfony usable for almost every kind of web application, and not only for the ones for which the framework was originally designed.
  204. Environments
  205. ------------
  206. During the course of application development, you will probably need to keep several sets of configuration in parallel. For instance, you will need to have the connection settings for your tests database available during development, and the ones for your real data available for production. To answer the need of concurrent configurations, symfony offers different environments.
  207. ### What Is an Environment?
  208. An application can run in various environments. The different environments share the same PHP code (apart from the front controller), but can have completely different configurations. For each application, symfony provides three default environments: production (`prod`), test (test), and development (dev). You're also free to add as many custom environments as you wish.
  209. So basically, environments and configuration are synonyms. For instance, a test environment will log alerts and errors, while a `prod` environment will only log errors. Cache acceleration is often deactivated in the `dev` environment, but activated in the `test` and `prod` environments. The `dev` and `test` environments may need test data, stored in a database distinct from the one used in the production environment. So the database configuration will be different between the two environments. All environments can live together on the same machine, although a production server generally contains only the `prod` environment.
  210. In the `dev` environment, the logging and debugging settings are all enabled, since maintenance is more important than performance. On the contrary, the prod environment has settings optimized for performance by default, so the production configuration turns off many features. A good rule of thumb is to navigate in the development environment until you are satisfied with the feature you are working on, and then switch to the production environment to check its speed.
  211. The `test` environment differs from the `dev` and `prod` environment in other ways. You interact with this environment solely through the command line for the purpose of functional testing and batch scripting. Consequently, the `test` environment is close to the production one, but it is not accessed through a web browser. It simulates the use of cookies and other HTTP specific components.
  212. To change the environment in which you're browsing your application, just change the front controller. Until now, you have seen only the development environment, since the URLs used in the example called the development front controller:
  213. http://localhost/frontend_dev.php/mymodule/index
  214. However, if you want to see how the application reacts in production, call the production front controller instead:
  215. http://localhost/index.php/mymodule/index
  216. If your web server has mod_rewrite enabled, you can even use the custom symfony rewriting rules, written in `web/.htaccess`. They define the production front controller as the default execution script and allow for URLs like this:
  217. http://localhost/mymodule/index
  218. >**SIDEBAR**
  219. >Environments and Servers
  220. >
  221. >Don't mix up the notions of environment and server. In symfony, different environments are different configurations, and correspond to a front controller (the script that executes the request). Different servers correspond to different domain names in the URL.
  222. >
  223. > http://localhost/frontend_dev.php/mymodule/index
  224. > _________ _______________
  225. > server environment
  226. >
  227. >Usually, developers work on applications in a development server, disconnected from the Internet and where all the server and PHP configuration can be changed at will. When the time comes for releasing the application to production, the application files are transferred to the production server and made accessible to the end users.
  228. >
  229. >This means that many environments are available on each server. For instance, you can run in the production environment even on your development server. However, most of the time, only the production environment should be accessible in the production server, to avoid public visibility of server configuration and security risks. To prevent accidental exposure of the non-production controllers on the production system, symfony adds a basic IP check to these front controllers, which will allow access only from localhost. If you want to have them accessible you can remove that, but think about the risk of having this accessible by anyone, as malicious users could guess the default `frontend_dev.php` and get access to a lot of debug information.
  230. >
  231. >To add a new environment, you don't need to create a directory or to use the symfony CLI. Simply create a new front controller and change the environment name definition in it. This environment inherits all the default configuration plus the settings that are common to all environments. The next chapter will show you how to do this.
  232. ### Configuration Cascade
  233. The same setting can be defined more than once, in different places. For instance, you may want to set the mime-type of your pages to `text/html` for all of the application, except for the pages of an `rss` module, which will need a `text/xml` mime-type. Symfony gives you the ability to write the first setting in `frontend/config/view.yml` and the second in `frontend/modules/rss/config/view.yml`. The configuration system knows that a setting defined at the module level must override a setting defined at the application level.
  234. In fact, there are several configuration levels in symfony:
  235. * Granularity levels:
  236. * The default configuration located in the framework
  237. * The global configuration for the whole project (in `myproject/config/`)
  238. * The local configuration for an application of the project (in `myproject/apps/frontend/config/`)
  239. * The local configuration restricted to a module (in `myproject/apps/frontend/modules/mymodule/config/`)
  240. * Environment levels:
  241. * Specific to one environment
  242. * For all environments
  243. Of all the properties that can be customized, many are environment-dependent. Consequently, many YAML configuration files are divided by environment, plus a tail section for all environments. The result is that typical symfony configuration looks like Listing 5-12.
  244. Listing 5-12 - The Structure of Symfony Configuration Files
  245. # Production environment settings
  246. prod:
  247. ...
  248. # Development environment settings
  249. dev:
  250. ...
  251. # Test environment settings
  252. test:
  253. ...
  254. # Custom environment settings
  255. myenv:
  256. ...
  257. # Settings for all environments
  258. all:
  259. ...
  260. In addition, the framework itself defines default values in files that are not located in the project tree structure, but in the `$sf_symfony_lib_dir/config/config/` directory of your symfony installation. The default configuration is set in these files as shown in Listing 5-13. These settings are inherited by all applications.
  261. Listing 5-13 - The Default Configuration, in `$sf_symfony_lib_dir/config/config/settings.yml`
  262. # Default settings:
  263. default:
  264. default_module: default
  265. default_action: index
  266. ...
  267. These default definitions are repeated in the project, application, and module configuration files as comments, as shown in Listing 5-14, so that you know that some parameters are defined by default and that they can be modified.
  268. Listing 5-14 - The Default Configuration, Repeated for Information, in `frontend/config/settings.yml`
  269. #all:
  270. # default_module: default
  271. # default_action: index
  272. #...
  273. This means that a property can be defined several times, and the actual value results from a definition cascade. A parameter definition in a named environment has precedence over the same parameter definition for all environments, which has precedence over a definition in the default configuration. A parameter definition at the module level has precedence over the same parameter definition at the application level, which has precedence over a definition at the project level. This can be wrapped up in the following priority list:
  274. 1. Module
  275. 2. Application
  276. 3. Project
  277. 4. Specific environment
  278. 5. All environments
  279. 6. Default
  280. The Configuration Cache
  281. -----------------------
  282. Parsing YAML and dealing with the configuration cascade at runtime represent a significant overhead for each request. Symfony has a built-in configuration cache mechanism designed to speed up requests.
  283. The configuration files, whatever their format, are processed by some special classes, called handlers, that transform them into fast-processing PHP code. In the development environment, the handlers check the configuration for changes at each request, to promote interactivity. They parse the recently modified files so that you can see a change in a YAML file immediately. But in the production environment, the processing occurs once during the first request, and then the processed PHP code is stored in the cache for subsequent requests. The performance is guaranteed, since every request in production will just execute some well-optimized PHP code.
  284. For instance, if the `app.yml` file contains this:
  285. all: # Setting for all environments
  286. mail:
  287. webmaster: webmaster@example.com
  288. then the file `config_app.yml.php`, located in the `cache/` folder of your project, will contain this:
  289. [php]
  290. <?php
  291. sfConfig::add(array(
  292. 'app_mail_webmaster' => 'webmaster@example.com',
  293. ));
  294. As a consequence, most of the time, the YAML files aren't even parsed by the framework, which relies on the configuration cache instead. However, in the development environment, symfony will systematically compare the dates of modification of the YAML files and the cached files, and reprocess only the ones that have changed since the previous request.
  295. This presents a major advantage over many PHP frameworks, where configuration files are compiled at every request, even in production. Unlike Java, PHP doesn't share an execution context between requests. For other PHP frameworks, keeping the flexibility of XML configuration files requires a major performance hit to process all the configuration at every request. This is not the case in symfony. Thanks to the cache system, the overhead caused by configuration is very low.
  296. There is an important consequence of this mechanism. If you change the configuration in the production environment, you need to force the reparsing of all the configuration files for your modification to be taken into account. For that, you just need to clear the cache, either by deleting the content of the cache/ directory or, more easily, by calling the `cache:clear` task:
  297. > php symfony cache:clear
  298. Accessing the Configuration from Code
  299. -------------------------------------
  300. All the configuration files are eventually transformed into PHP, and many of the settings they contain are automatically used by the framework, without further intervention. However, you sometimes need to access some of the settings defined in the configuration files from your code (in actions, templates, custom classes, and so on). The settings defined in `settings.yml`, `app.yml`, and `module.yml` are available through a special class called `sfConfig`.
  301. ### The sfConfig Class
  302. You can access settings from within the application code through the `sfConfig` class. It is a registry for configuration parameters, with a simple getter class method, accessible from every part of the code:
  303. [php]
  304. // Retrieve a setting
  305. parameter = sfConfig::get('param_name', $default_value);
  306. Note that you can also define, or override, a setting from within PHP code:
  307. [php]
  308. // Define a setting
  309. sfConfig::set('param_name', $value);
  310. The parameter name is the concatenation of several elements, separated by underscores, in this order:
  311. * A prefix related to the configuration file name (`sf_` for `settings.yml`, `app_` for `app.yml`, `mod_` for `module.yml`)
  312. * The parent keys (if defined), in lowercase
  313. * The name of the key, in lowercase
  314. The environment is not included, since your PHP code will have access only to the values defined for the environment in which it's executed.
  315. For instance, if you need to access the values defined in the `app.yml` file shown in Listing 5-15, you will need the code shown in Listing 5-16.
  316. Listing 5-15 - Sample `app.yml` Configuration
  317. all:
  318. .general:
  319. tax: 19.6
  320. default_user:
  321. name: John Doe
  322. mail:
  323. webmaster: webmaster@example.com
  324. contact: contact@example.com
  325. dev:
  326. mail:
  327. webmaster: dummy@example.com
  328. contact: dummy@example.com
  329. Listing 5-16 - Accessing Configuration Settings in PHP in the `dev` Environment
  330. [php]
  331. echo sfConfig::get('app_tax'); // Remember that category headers are ignored
  332. => '19.6'
  333. echo sfConfig::get('app_default_user_name');
  334. => 'John Doe'
  335. echo sfConfig::get('app_mail_webmaster');
  336. => 'dummy@example.com'
  337. echo sfConfig::get('app_mail_contact');
  338. => 'dummy@example.com'
  339. So symfony configuration settings have all the advantages of PHP constants, but without the disadvantages, since the value can be changed.
  340. On that account, the `settings.yml` file, where you can set the framework settings for an application, is the equivalent to a list of `sfConfig::set()` calls. Listing 5-17 is interpreted as shown in Listing 5-18.
  341. Listing 5-17 - Extract of `settings.yml`
  342. all:
  343. .settings:
  344. available: on
  345. path_info_array: SERVER
  346. path_info_key: PATH_INFO
  347. url_format: PATH
  348. Listing 5-18 - What Symfony Does When Parsing `settings.yml`
  349. [php]
  350. sfConfig::add(array(
  351. 'sf_available' => true,
  352. 'sf_path_info_array' => 'SERVER',
  353. 'sf_path_info_key' => 'PATH_INFO',
  354. 'sf_url_format' => 'PATH',
  355. ));
  356. Refer to Chapter 19 for the meanings of the settings found in the `settings.yml` file.
  357. ### Custom Application Settings and `app.yml`
  358. Most of the settings related to the features of an application should be stored in the `app.yml` file, located in the `myproject/apps/frontend/config/` directory. This file is environment-dependent and empty by default. Put in every setting that you want to be easily changed, and use the `sfConfig` class to access these settings from your code. Listing 5-19 shows an example.
  359. Listing 5-19 - Sample `app.yml` to Define Credit Card Operators Accepted for a Given Site
  360. all:
  361. creditcards:
  362. fake: off
  363. visa: on
  364. americanexpress: on
  365. dev:
  366. creditcards:
  367. fake: on
  368. To know if the `fake` credit cards are accepted in the current environment, get the value of:
  369. [php]
  370. sfConfig::get('app_creditcards_fake');
  371. >**NOTE**
  372. >When you should require an PHP array directly beneath the `all` key you need to use a category header, otherwise symfony will make the values separately available as shown above.
  373. >
  374. > all:
  375. > .array:
  376. > creditcards:
  377. > fake: off
  378. > visa: on
  379. > americanexpress: on
  380. >
  381. > [php]
  382. > print_r(sfConfig::get('app_creditcards'));
  383. >
  384. > Array(
  385. > [fake] => false
  386. > [visa] => true
  387. > [americanexpress] => true
  388. > )
  389. >**TIP**
  390. >Each time you are tempted to define a constant or a setting in one of your scripts, think about if it would be better located in the `app.yml` file. This is a very convenient place to store all application settings.
  391. When your need for custom parameters becomes hard to handle with the `app.yml` syntax, you may need to define a syntax of your own. In that case, you can store the configuration in a new file, interpreted by a new configuration handler. Refer to Chapter 19 for more information about configuration handlers.
  392. Tips for Getting More from Configuration Files
  393. ----------------------------------------------
  394. There are a few last tricks to learn before writing your own YAML files. They will allow you to avoid configuration duplication and to deal with your own YAML formats.
  395. ### Using Constants in YAML Configuration Files
  396. Some configuration settings rely on the value of other settings. To avoid setting the same value twice, symfony supports constants in YAML files. On encountering a setting name (one that can be accessed by `sfConfig::get()`) in capital letters enclosed in `%` signs, the configuration handlers replace them with their current value. See Listing 5-20 for an example.
  397. Listing 5-20 - Using Constants in YAML Files, Example from `autoload.yml`
  398. autoload:
  399. symfony:
  400. name: symfony
  401. path: %SF_SYMFONY_LIB_DIR%
  402. recursive: on
  403. exclude: [vendor]
  404. The path parameter will take the value returned by `sfConfig::get('sf_symfony_lib_dir')`. If you want one configuration file to rely on another, you need to make sure that the file you rely on is already parsed (look in the symfony source to find out the order in which the configuration files are parsed). `app.yml` is one of the last files parsed, so you may rely on others in it.
  405. ### Using Scriptable Configuration
  406. It may happen that your configuration relies on external parameters (such as a database or another configuration file). To deal with these particular cases, the symfony configuration files are parsed as PHP files before being passed to the YAML parser. It means that you can put PHP code in YAML files, as in Listing 5-21.
  407. Listing 5-21 - YAML Files Can Contain PHP
  408. all:
  409. translation:
  410. format: <?php echo (sfConfig::get('sf_i18n') == true ? 'xliff' : 'none')."\n" ?>
  411. But be aware that the configuration is parsed very early in the life of a request, so you will not have any symfony built-in methods or functions to help you.
  412. Also, as the `echo` language construct does not add a carriage return by default, you need to add a "\n" or use the `echoln` helper to keep the YAML format valid.
  413. all:
  414. translation:
  415. format: <?php echoln(sfConfig::get('sf_i18n') == true ? 'xliff' : 'none') ?>
  416. >**CAUTION**
  417. >In the production environment, the configuration is cached, so the configuration files are parsed (and executed) only once after the cache is cleared.
  418. ### Browsing Your Own YAML File
  419. Whenever you want to read a YAML file directly, you can use the `sfYaml` class. It is a YAML parser that can turn a YAML file into a PHP associative array. Listing 5-22 presents a sample YAML file, and Listing 5-23 shows you how to parse it.
  420. Listing 5-22 - Sample `test.yml` File
  421. house:
  422. family:
  423. name: Doe
  424. parents: [John, Jane]
  425. children: [Paul, Mark, Simone]
  426. address:
  427. number: 34
  428. street: Main Street
  429. city: Nowheretown
  430. zipcode: 12345
  431. Listing 5-23 - Using the `sfYaml` Class to Turn a YAML File into an Associative Array
  432. [php]
  433. $test = sfYaml::load('/path/to/test.yml');
  434. print_r($test);
  435. Array(
  436. [house] => Array(
  437. [family] => Array(
  438. [name] => Doe
  439. [parents] => Array(
  440. [0] => John
  441. [1] => Jane
  442. )
  443. [children] => Array(
  444. [0] => Paul
  445. [1] => Mark
  446. [2] => Simone
  447. )
  448. )
  449. [address] => Array(
  450. [number] => 34
  451. [street] => Main Street
  452. [city] => Nowheretown
  453. [zipcode] => 12345
  454. )
  455. )
  456. )
  457. Summary
  458. -------
  459. The symfony configuration system uses the YAML language to be simple and readable. The ability to deal with multiple environments and to set parameters through a definition cascade offers versatility to the developer. Some of the configuration can be accessed from within the code via the `sfConfig` object, especially the application settings stored in the `app.yml` file.
  460. Yes, symfony does have a lot of configuration files, but this approach makes it more adaptable. Remember that you don't need to bother with them unless your application requires a high level of customization.