[ Index ] |
|
Code source de Symfony 1.0.0 |
1 Chapter 4 - The Basics Of Page Creation 2 ======================================= 3 4 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. 5 6 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. 7 8 Creating a Module Skeleton 9 -------------------------- 10 11 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. 12 13 The symfony command line automates the creation of modules. You just need to call the `in`it-module task with the application name and the module name as arguments. In the previous chapter, you created a `myapp` application. To add a `mymodule` module to this application, type the following commands: 14 15 > cd ~/myproject 16 > symfony init-module myapp mymodule 17 18 >> dir+ ~/myproject/apps/myapp/modules/mymodule 19 >> dir+ ~/myproject/apps/myapp/modules/mymodule/actions 20 >> file+ ~/myproject/apps/myapp/modules/mymodule/actions/actions.class.php 21 >> dir+ ~/myproject/apps/myapp/modules/mymodule/config 22 >> dir+ ~/myproject/apps/myapp/modules/mymodule/lib 23 >> dir+ ~/myproject/apps/myapp/modules/mymodule/templates 24 >> file+ ~/myproject/apps/myapp/modules/mymodule/templates/indexSuccess.php 25 >> dir+ ~/myproject/apps/myapp/modules/mymodule/validate 26 >> file+ ~/myproject/test/functional/myapp/mymoduleActionsTest.php 27 >> tokens ~/myproject/test/functional/myapp/mymoduleActionsTest.php 28 >> tokens ~/myproject/apps/myapp/modules/mymodule/actions/actions.class.php 29 >> tokens ~/myproject/apps/myapp/modules/mymodule/templates/indexSuccess.php 30 31 Apart from the `actions/`, `config/`, `lib/`, `templates/`, and `validate/` directories, this command created only three files. The one in the test/ folder concerns unit 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. 32 33 Listing 4-1 - The Default Generated Action, in `actions/actions.class.php` 34 35 [php] 36 <?php 37 38 class mymoduleActions extends sfActions 39 { 40 public function executeIndex() 41 { 42 $this->forward('default', 'module'); 43 } 44 } 45 46 >**NOTE** 47 >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/)). 48 49 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: 50 51 http://localhost/myapp_dev.php/mymodule/index 52 53 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. 54 55 >**NOTE** 56 >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 called scaffolding to generate this code for you. Refer to Chapter 14 for more information about this technique. 57 58 Figure 4-1 - The default generated index page 59 60  61 62 Adding a Page 63 ------------- 64 65 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. 66 67 ### Adding an Action 68 69 The "Hello, world!" page will be accessible through a `myAction` action. To create it, just add an `executeMyAction` method to the `mymoduleActions` class, as shown in Listing 4-2. 70 71 Listing 4-2 - Adding an Action Is Like Adding an Execute Method to the Action Class 72 73 [php] 74 <?php 75 76 class mymoduleActions extends sfActions 77 { 78 public function executeMyAction() 79 { 80 } 81 } 82 83 The name of the action method is always `execute``Xxx``()`, where the second part of the name is the action name with the first letter capitalized. 84 85 Now, if you request the following URL: 86 87 http://localhost/myapp_dev.php/mymodule/myAction 88 89 symfony will complain that the `myActionSuccess.php` template is missing. That's normal; in symfony, a page is always made of an action and a template. 90 91 >**CAUTION** 92 >URLs (not domain names) are case-sensitive, and so is symfony (even though the method names are case-insensitive in PHP). This means that if you add an `executemyaction()` method, or an `executeMyaction()`, and then you call `myAction` with the browser, symfony will return a 404 error. 93 94 - 95 96 >**SIDEBAR** 97 >URLs are part of the response 98 > 99 >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: 100 > 101 > http://localhost/myapp_dev.php/article/index?id=123 102 > 103 >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: 104 > 105 > http://localhost/articles/europe/france/finance.html 106 > 107 >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: 108 > 109 > http://localhost/articles/tagged/finance+france+euro 110 > 111 >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. 112 > 113 >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's 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. 114 115 ### Adding a Template 116 117 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 `myAction` action is to be called `myActionSuccess.php`. 118 119 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. 120 121 Listing 4-3 - The `mymodule/templates/myActionSuccess.php` Template 122 123 [php] 124 <p>Hello, world!</p> 125 126 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. 127 128 Listing 4-4 - The Usual PHP Syntax, Good for Actions, But Bad for Templates 129 130 [php] 131 <p>Hello, world!</p> 132 <?php 133 134 if ($test) 135 { 136 echo "<p>".time()."</p>"; 137 } 138 139 ?> 140 141 Listing 4-5 - The Alternative PHP Syntax, Good for Templates 142 143 [php] 144 <p>Hello, world!</p> 145 <?php if ($test): ?> 146 <p><?php echo time(); ?></p> 147 <?php endif; ?> 148 149 >**TIP** 150 >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. 151 152 ### Passing Information from the Action to the Template 153 154 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. 155 156 Listing 4-6 - Setting an Action Attribute in the Action to Make It Available to the Template 157 158 [php] 159 <?php 160 161 class mymoduleActions extends sfActions 162 { 163 public function executeMyAction() 164 { 165 $today = getdate(); 166 $this->hour = $today['hours']; 167 } 168 } 169 170 Listing 4-7 - The Template Has Direct Access to the Action Attributes 171 172 [php] 173 <p>Hello, world!</p> 174 <?php if ($hour >= 18): ?> 175 <p>Or should I say good evening? It's already <?php echo $hour ?>.</p> 176 <?php endif; ?> 177 178 >**NOTE** 179 >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_context`, `$sf_request`, `$sf_params`, and `$sf_user` objects. They contain data related to the current context, request, request parameters, and session. You will soon learn how to use them efficiently. 180 181 Gathering Information from the User with Forms 182 ---------------------------------------------- 183 184 Forms are a good way to get information from the user. Writing form and form elements in HTML can sometimes be cumbersome, especially when you want to be XHTML-compliant. You could include form elements in symfony templates the usual way, as shown in Listing 4-8, but symfony provides helpers that make this task easier. 185 186 Listing 4-8 - Templates Can Include Usual HTML Code 187 188 [php] 189 <p>Hello, world!</p> 190 <?php if ($hour >= 18): ?> 191 <p>Or should I say good evening? It's already <?php echo $hour ?>.</p> 192 <?php endif; ?> 193 <form method="post" target="/myapp_dev.php/mymodule/anotherAction"> 194 <label for="name">What is your name?</label> 195 <input type="text" name="name" id="name" value="" /> 196 <input type="submit" value="Ok" /> 197 </form> 198 199 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. Using symfony helpers, you can have the same result as in Listing 4-8 with the code shown in Listing 4-9. 200 201 Listing 4-9 - It Is Faster and Easier to Use Helpers Than to Use HTML Tags 202 203 [php] 204 <p>Hello, world!</p> 205 <?php if ($hour >= 18): ?> 206 <p>Or should I say good evening? It's already <?php echo $hour ?>.</p> 207 <?php endif; ?> 208 <?php echo form_tag('mymodule/anotherAction') ?> 209 <?php echo label_for('name', 'What is your name?') ?> 210 <?php echo input_tag('name') ?> 211 <?php echo submit_tag('Ok') ?> 212 </form> 213 214 >**SIDEBAR** 215 >Helpers are here to help you 216 > 217 >If, in the example in Listing 4-9, you think the helper version is not really faster to write than the HTML one, consider this one: 218 > 219 > [php] 220 > <?php 221 > $card_list = array( 222 > 'VISA' => 'Visa', 223 > 'MAST' => 'MasterCard', 224 > 'AMEX' => 'American Express', 225 > 'DISC' => 'Discover'); 226 > echo select_tag('cc_type', options_for_select($card_list, 'AMEX')); 227 > ?> 228 > 229 >This outputs the following HTML: 230 > 231 > [php] 232 > <select name="cc_type" id="cc_type"> 233 > <option value="VISA">Visa</option> 234 > <option value="MAST">MasterCard</option> 235 > <option value="AMEX" selected="selected">American Express</option> 236 > <option value="DISC">Discover</option> 237 > </select> 238 > 239 >The benefit of helpers in templates is raw speed of coding, clarity of code, and concision. The only price to pay is the time to learn them, which will end when you finish this book, and the time to write <?php echo ?>, for which you should already have a shortcut in your favorite text editor. So you could not use the symfony helpers in templates and write HTML the way you always did, but this would be a great loss and much less fun. 240 241 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. 242 243 Form manipulation deserves a whole chapter of its own, since symfony provides many tools, mostly helpers, to make it easier. You will learn more about these helpers in Chapter 10. 244 245 Linking to Another Action 246 ------------------------- 247 248 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 `anotherAction` 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. 249 250 Listing 4-10 - Hyperlinks, the Classic Way 251 252 [php] 253 <a href="/myapp_dev.php/mymodule/anotherAction?name=anonymous"> 254 I never say my name 255 </a> 256 257 To avoid this hassle, you should always use the `link_to()` helper to create hyperlinks to your application's actions. Listing 4-11 demonstrates the use of the hyperlink helper. 258 259 Listing 4-11 - The `link_to()` Helper 260 261 [php] 262 <p>Hello, world!</p> 263 <?php if ($hour >= 18): ?> 264 <p>Or should I say good evening? It's already <?php echo $hour ?>.</p> 265 <?php endif; ?> 266 <?php echo form_tag('mymodule/anotherAction') ?> 267 <?php echo label_for('name', 'What is your name?') ?> 268 <?php echo input_tag('name') ?> 269 <?php echo submit_tag('Ok') ?> 270 <?php echo link_to('I never say my name','mymodule/anotherAction?name=anonymous') ?> 271 </form> 272 273 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. 274 275 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. 276 277 Listing 4-12 - Most Helpers Accept an Option Argument 278 279 [php] 280 // Option argument as an associative array 281 <?php echo link_to('I never say my name', 'mymodule/anotherAction?name=anonymous', 282 array( 283 'class' => 'special_link', 284 'confirm' => 'Are you sure?', 285 'absolute' => true 286 )) ?> 287 288 // Option argument as a string 289 <?php echo link_to('I never say my name', 'mymodule/anotherAction?name=anonymous', 290 'class=special_link confirm=Are you sure? absolute=true') ?> 291 292 // Both calls output the same 293 => <a class="special_link" onclick="return confirm('Are you sure?');" 294 href="http://localhost/myapp_dev.php/mymodule/anotherAction/name/anonymous"> 295 I never say my name</a> 296 297 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. 298 299 >**NOTE** 300 >Because it requires an additional parsing and transformation, the string syntax is a little slower than the array syntax. 301 302 Like the form helpers, the link helpers are numerous and have many options. Chapter 9 will describe them in detail. 303 304 Getting Information from the Request 305 ------------------------------------ 306 307 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 `getRequestParameter()` method of the `sfActions` object. Listing 4-13 shows how, in `anotherAction`, you retrieve the value of the `name` parameter. 308 309 Listing 4-13 - Getting Data from the Request Parameter in the Action 310 311 [php] 312 <?php 313 314 class mymoduleActions extends sfActions 315 { 316 ... 317 318 public function executeAnotherAction() 319 { 320 $this->name = $this->getRequestParameter('name'); 321 } 322 } 323 324 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 getRequestParameter() in the action. 325 326 If `executeAnotherAction()` were empty, Listing 4-14 shows how the `anotherActionSuccess.php` template would retrieve the same `name` parameter. 327 328 Listing 4-14 - Getting Data from the Request Parameter Directly in the Template 329 330 [php] 331 <p>Hello, <?php echo $sf_params->get('name') ?>!</p> 332 333 >**NOTE** 334 >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. 335 336 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. 337 338 Listing 4-15 - Testing the Existence of a Request Parameter in the Template 339 340 [php] 341 <?php if ($sf_params->has('name')): ?> 342 <p>Hello, <?php echo $sf_params->get('name') ?>!</p> 343 <?php else: ?> 344 <p>Hello, John Doe!</p> 345 <?php endif; ?> 346 347 You may have already guessed that this can be written in a single line. As with most getter methods in symfony, both the `getRequestParameter()` 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. 348 349 [php] 350 <p>Hello, <?php echo $sf_params->get('name', 'John Doe') ?>!</p> 351 352 Summary 353 ------- 354 355 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 for using any direct reference to the URL in action naming or request parameter retrieval. 356 357 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.
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Fri Mar 16 22:42:14 2007 | par Balluche grâce à PHPXref 0.7 |