04-The-Basics-of-Page-Creation.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. Chapter 4 - The Basics Of Page Creation
  2. =======================================
  3. Curiously, the first tutorial that programmers follow when learning a new language or a framework is the one that displays "Hello, world!" on the screen. It is strange to think of the computer as something that can greet the whole world, since every attempt in the artificial intelligence field has so far resulted in poor conversational abilities. But symfony isn't dumber than any other program, and the proof is, you can create a page that says "Hello, `<Your Name Here>`" with it.
  4. This chapter will teach you how to create a module, which is a structural element that groups pages. You will also learn how to create a page, which is divided into an action and a template, because of the MVC pattern. Links and forms are the basic web interactions; you will see how to insert them in a template and handle them in an action.
  5. Creating a Module Skeleton
  6. --------------------------
  7. As Chapter 2 explained, symfony groups pages into modules. Before creating a page, you need to create a module, which is initially an empty shell with a file structure that symfony can recognize.
  8. The symfony command line automates the creation of modules. You just need to call the `generate:module` task with the application name and the module name as arguments. In the previous chapter, you created a `frontend` application. To add a `content` module to this application, type the following commands:
  9. > cd ~/myproject
  10. > php symfony generate:module frontend content
  11. >> dir+ ~/myproject/apps/frontend/modules/content/actions
  12. >> file+ ~/myproject/apps/frontend/modules/content/actions/actions.class.php
  13. >> dir+ ~/myproject/apps/frontend/modules/content/templates
  14. >> file+ ~/myproject/apps/frontend/modules/content/templates/indexSuccess.php
  15. >> file+ ~/myproject/test/functional/frontend/contentActionsTest.php
  16. >> tokens ~/myproject/test/functional/frontend/contentActionsTest.php
  17. >> tokens ~/myproject/apps/frontend/modules/content/actions/actions.class.php
  18. >> tokens ~/myproject/apps/frontend/modules/content/templates/indexSuccess.php
  19. Apart from the `actions/`, and `templates/` directories, this command created only three files. The one in the test/ folder concerns functional tests, and you don't need to bother with it until Chapter 15. The `actions.class.php` (shown in Listing 4-1) forwards to the default module congratulation page. The `templates/indexSuccess.php` file is empty.
  20. Listing 4-1 - The Default Generated Action, in `actions/actions.class.php`
  21. [php]
  22. <?php
  23. class contentActions extends sfActions
  24. {
  25. public function executeIndex()
  26. {
  27. $this->forward('default', 'module');
  28. }
  29. }
  30. >**NOTE**
  31. >If you look at an actual `actions.class.php` file, you will find more than these few lines, including a lot of comments. This is because symfony recommends using PHP comments to document your project and prepares each class file to be compatible with the phpDocumentor tool ([http://www.phpdoc.org/](http://www.phpdoc.org/)).
  32. For each new module, symfony creates a default `index` action. It is composed of an action method called `executeIndex` and a template file called `indexSuccess.php`. The meanings of the `execute` prefix and `Success` suffix will be explained in Chapters 6 and 7, respectively. In the meantime, you can consider that this naming is a convention. You can see the corresponding page (reproduced in Figure 4-1) by browsing to the following URL:
  33. http://localhost/frontend_dev.php/content/index
  34. The default `index` action will not be used in this chapter, so you can remove the `executeIndex()` method from the `actions.class.php` file, and delete the `indexSuccess.php` file from the `templates/` directory.
  35. >**NOTE**
  36. >Symfony offers other ways to initiate a module than the command line. One of them is to create the directories and files yourself. In many cases, actions and templates of a module are meant to manipulate data of a given table. As the necessary code to create, retrieve, update, and delete records from a table is often the same, symfony provides a mechanism to generate this code for you. Refer to Chapter 14 for more information about this technique.
  37. Figure 4-1 - The default generated index page
  38. ![The default generated index page](/images/book/F0401.jpg "The default generated index page")
  39. Adding a Page
  40. -------------
  41. In symfony, the logic behind pages is stored in the action, and the presentation is in templates. Pages without logic (still) require an empty action.
  42. ### Adding an Action
  43. The "Hello, world!" page will be accessible through a `show` action. To create it, just add an `executeShow` method to the `contentActions` class, as shown in Listing 4-2.
  44. Listing 4-2 - Adding an Action Is Like Adding an Execute Method to the Action Class
  45. [php]
  46. <?php
  47. class contentActions extends sfActions
  48. {
  49. public function executeShow()
  50. {
  51. }
  52. }
  53. The name of the action method is always `executeXxx()`, where the second part of the name is the action name with the first letter capitalized.
  54. Now, if you request the following URL:
  55. http://localhost/frontend_dev.php/content/show
  56. symfony will complain that the `showSuccess.php` template is missing. That's normal; in symfony, a page is always made of an action and a template.
  57. >**CAUTION**
  58. >URLs (not domain names) are case-sensitive, and so is symfony (even though the method names are case-insensitive in PHP). This means that symfony will return a 404 error if you call `sHow` with the browser.
  59. -
  60. >**SIDEBAR**
  61. >URLs are part of the response
  62. >
  63. >Symfony contains a routing system that allows you to have a complete separation between the actual action name and the form of the URL needed to call it. This allows for custom formatting of the URL as if it were part of the response. You are no longer limited by the file structure nor by the request parameters; the URL for an action can look like the phrase you want. For instance, the call to the index action of a module called article usually looks like this:
  64. >
  65. > http://localhost/frontend_dev.php/article/index?id=123
  66. >
  67. >This URL retrieves a given article from a database. In this example, it retrieves an article (with `id=123`) in the Europe section that specifically discusses finance in France. But the URL can be written in a completely different way with a simple change in the `routing.yml` configuration file:
  68. >
  69. > http://localhost/articles/europe/france/finance.html
  70. >
  71. >Not only is the resulting URL search engine-friendly, it is also significant for the user, who can then use the address bar as a pseudo command line to do custom queries, as in the following:
  72. >
  73. > http://localhost/articles/tagged/finance+france+euro
  74. >
  75. >Symfony knows how to parse and generate smart URLs for the user. The routing system automatically peels the request parameters from a smart URL and makes them available to the action. It also formats the hyperlinks included in the response so that they look "smart". You will learn more about this feature in Chapter 9.
  76. >
  77. >Overall, this means that the way you name the actions of your applications should not be influenced by the way the URL used to call them should look, but by the actions' functions in the application. An action name explains what the action actually does, and it is often a verb in the infinitive form (like `show`, `list`, `edit`, and so on). Action names can be made totally invisible to the end user, so don't hesitate to use explicit action names (like `listByName` or `showWithComments`). You will economize on code comments to explain your action function, plus the code will be much easier to read.
  78. ### Adding a Template
  79. The action expects a template to render itself. A template is a file located in the `templates/` directory of a module, named by the action and the action termination. The default action termination is a "success," so the template file to be created for the `show` action is to be called `showSuccess.php`.
  80. Templates are supposed to contain only presentational code, so keep as little PHP code in them as possible. As a matter of fact, a page displaying "Hello, world!" can have a template as simple as the one in Listing 4-3.
  81. Listing 4-3 - The `content/templates/showSuccess.php` Template
  82. [php]
  83. <p>Hello, world!</p>
  84. If you need to execute some PHP code in the template, you should avoid using the usual PHP syntax, as shown in Listing 4-4. Instead, write your templates using the PHP alternative syntax, as shown in Listing 4-5, to keep the code understandable for non-PHP programmers. Not only will the final code be correctly indented, but it will also help you keep the complex PHP code in the action, because only control statements (`if`, `foreach`, `while`, and so on) have an alternative syntax.
  85. Listing 4-4 - The Usual PHP Syntax, Good for Actions, But Bad for Templates
  86. [php]
  87. <p>Hello, world!</p>
  88. <?php
  89. if ($test)
  90. {
  91. echo "<p>".time()."</p>";
  92. }
  93. ?>
  94. Listing 4-5 - The Alternative PHP Syntax, Good for Templates
  95. [php]
  96. <p>Hello, world!</p>
  97. <?php if ($test): ?>
  98. <p><?php echo time(); ?></p>
  99. <?php endif; ?>
  100. >**TIP**
  101. >A good rule of thumb to check if the template syntax is readable enough is that the file should not contain HTML code echoed by PHP or curly brackets. And most of the time, when opening a `<?php`, you will close it with `?>` in the same line.
  102. ### Passing Information from the Action to the Template
  103. The job of the action is to do all the complicated calculation, data retrieval, and tests, and to set variables for the template to be echoed or tested. Symfony makes the attributes of the action class (accessed via `$this->variableName` in the action) directly accessible to the template in the global namespace (via `$variableName`). Listings 4-6 and 4-7 show how to pass information from the action to the template.
  104. Listing 4-6 - Setting an Action Attribute in the Action to Make It Available to the Template
  105. [php]
  106. <?php
  107. class contentActions extends sfActions
  108. {
  109. public function executeShow()
  110. {
  111. $today = getdate();
  112. $this->hour = $today['hours'];
  113. }
  114. }
  115. Listing 4-7 - The Template Has Direct Access to the Action Attributes
  116. [php]
  117. <p>Hello, world!</p>
  118. <?php if ($hour >= 18): ?>
  119. <p>Or should I say good evening? It is already <?php echo $hour ?>.</p>
  120. <?php endif; ?>
  121. Note that the use of the short opening tags (`<?=`, equivalent to `<?php echo`) is not recommended for professional web applications, since your production web server may be able to understand more than one scripting language and consequently get confused. Besides, the short opening tags do not work with the default PHP configuration and need server tweaking to be activated. Ultimately, when you have to deal with XML and validation, it falls short because `<?` has a special meaning in XML.
  122. >**NOTE**
  123. >The template already has access to a few pieces of data without the need of any variable setup in the action. Every template can call methods of the `$sf_request`, `$sf_params`, `$sf_response`, and `$sf_user` objects. They contain data related to the current request, request parameters, response, and session. You will soon learn how to use them efficiently.
  124. Linking to Another Action
  125. -------------------------
  126. You already know that there is a total decoupling between an action name and the URL used to call it. So if you create a link to `update` in a template as in Listing 4-10, it will only work with the default routing. If you later decide to change the way the URLs look, then you will need to review all templates to change the hyperlinks.
  127. Listing 4-10 - Hyperlinks, the Classic Way
  128. [php]
  129. <a href="/frontend_dev.php/content/update?name=anonymous">
  130. I never say my name
  131. </a>
  132. To avoid this hassle, you should always use the `link_to()` helper to create hyperlinks to your application's actions. And if you only want to generate the URL part, the `url_for()` is the helper you're looking for.
  133. A helper is a PHP function defined by symfony that is meant to be used within templates. It outputs some HTML code and is faster to use than writing the actual HTML code by yourself. Listing 4-11 demonstrates the use of the hyperlink helpers.
  134. Listing 4-11 - The `link_to()`, and `url_for()` Helpers
  135. [php]
  136. <p>Hello, world!</p>
  137. <?php if ($hour >= 18): ?>
  138. <p>Or should I say good evening? It is already <?php echo $hour ?>.</p>
  139. <?php endif; ?>
  140. <form method="post" action="<?php echo url_for('content/update') ?>">
  141. <label for="name">What is your name?</label>
  142. <input type="text" name="name" id="name" value="" />
  143. <input type="submit" value="Ok" />
  144. <?php echo link_to('I never say my name','content/update?name=anonymous') ?>
  145. </form>
  146. The resulting HTML will be the same as previously, except that when you change your routing rules, all the templates will behave correctly and reformat the URLs accordingly.
  147. Form manipulation deserves a whole chapter of its own, since symfony provides many tools to make it even easier. You will learn more about these helpers in Chapter 10.
  148. The `link_to()` helper, like many other helpers, accepts another argument for special options and additional tag attributes. Listing 4-12 shows an example of an option argument and the resulting HTML. The option argument is either an associative array or a simple string showing `key=value` couples separated by blanks.
  149. Listing 4-12 - Most Helpers Accept an Option Argument
  150. [php]
  151. // Option argument as an associative array
  152. <?php echo link_to('I never say my name', 'content/update?name=anonymous',
  153. array(
  154. 'class' => 'special_link',
  155. 'confirm' => 'Are you sure?',
  156. 'absolute' => true
  157. )) ?>
  158. // Option argument as a string
  159. <?php echo link_to('I never say my name', 'content/update?name=anonymous',
  160. 'class=special_link confirm=Are you sure? absolute=true') ?>
  161. // Both calls output the same
  162. => <a class="special_link" onclick="return confirm('Are you sure?');"
  163. href="http://localhost/frontend_dev.php/content/update/name/anonymous">
  164. I never say my name</a>
  165. Whenever you use a symfony helper that outputs an HTML tag, you can insert additional tag attributes (like the `class` attribute in the example in Listing 4-12) in the option argument. You can even write these attributes in the "quick-and-dirty" HTML 4.0 way (without double quotes), and symfony will output them in nicely formatted XHTML. That's another reason why helpers are faster to write than HTML.
  166. >**NOTE**
  167. >Because it requires an additional parsing and transformation, the string syntax is a little slower than the array syntax.
  168. Like all symfony helpers, the link helpers are numerous and have many options. Chapter 9 will describe them in detail.
  169. Getting Information from the Request
  170. ------------------------------------
  171. Whether the user sends information via a form (usually in a POST request) or via the URL (GET request), you can retrieve the related data from the action with the `getParameter()` method of the `sfRequest` object. Listing 4-13 shows how, in `update`, you retrieve the value of the `name` parameter.
  172. Listing 4-13 - Getting Data from the Request Parameter in the Action
  173. [php]
  174. <?php
  175. class contentActions extends sfActions
  176. {
  177. // ...
  178. public function executeUpdate($request)
  179. {
  180. $this->name = $request->getParameter('name');
  181. }
  182. }
  183. As a convenience, all `executeXxx()` methods take the current `sfRequest` object as its first argument.
  184. If the data manipulation is simple, you don't even need to use the action to retrieve the request parameters. The template has access to an object called `$sf_params`, which offers a `get`() method to retrieve the request parameters, just like the `getParameter()` in the action.
  185. If `executeUpdate()` were empty, Listing 4-14 shows how the `updateSuccess.php` template would retrieve the same `name` parameter.
  186. Listing 4-14 - Getting Data from the Request Parameter Directly in the Template
  187. [php]
  188. <p>Hello, <?php echo $sf_params->get('name') ?>!</p>
  189. >**NOTE**
  190. >Why not use the `$_POST`, `$_GET`, or `$_REQUEST` variables instead? Because then your URLs will be formatted differently (as in `http://localhost/articles/europe/france/finance.html`, without `?` nor `=`), the usual PHP variables won't work anymore, and only the routing system will be able to retrieve the request parameters. And you may want to add input filtering to prevent malicious code injection, which is only possible if you keep all request parameters in one clean parameter holder.
  191. The `$sf_params` object is more powerful than just giving a getter equivalent to an array. For instance, if you only want to test the existence of a request parameter, you can simply use the `$sf_params->has()` method instead of testing the actual value with `get()`, as in Listing 4-15.
  192. Listing 4-15 - Testing the Existence of a Request Parameter in the Template
  193. [php]
  194. <?php if ($sf_params->has('name')): ?>
  195. <p>Hello, <?php echo $sf_params->get('name') ?>!</p>
  196. <?php else: ?>
  197. <p>Hello, John Doe!</p>
  198. <?php endif; ?>
  199. You may have already guessed that this can be written in a single line. As with most getter methods in symfony, both the `$request->getParameter()` method in the action and the `$sf_params->get()` method in the template (which, as a matter of fact, calls the same method on the same object) accept a second argument: the default value to be used if the request parameter is not present.
  200. [php]
  201. <p>Hello, <?php echo $sf_params->get('name', 'John Doe') ?>!</p>
  202. Summary
  203. -------
  204. In symfony, pages are composed of an action (a method in the `actions/actions.class.php` file prefixed with `execute`) and a template (a file in the `templates/` directory, usually ending with `Success.php`). They are grouped in modules, according to their function in the application. Writing templates is facilitated by helpers, which are functions provided by symfony that return HTML code. And you need to think of the URL as a part of the response, which can be formatted as needed, so you should refrain from using any direct reference to the URL in action naming or request parameter retrieval.
  205. Once you know these basic principles, you can already write a whole web application with symfony. But it would take you way too long, since almost every task you will have to achieve during the course of the application development is facilitated one way or another by some symfony feature... which is why the book doesn't stop now.