Changeset 11251
- Timestamp:
- 08/30/08 10:42:18 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
doc/branches/1.2/book/07-Inside-the-View-Layer.txt
r9483 r11251 45 45 } 46 46 47 As a matter of fact, the `input_tag()` function built into symfony is a little more complicated than that, as it accepts a third parameter to add other attributes to the `<input>` tag. You can check its complete syntax and options in the online API documentation ([http://www.symfony-project.org/api/1_ 1/](http://www.symfony-project.org/api/1_1/)).47 As a matter of fact, the `input_tag()` function built into symfony is a little more complicated than that, as it accepts a third parameter to add other attributes to the `<input>` tag. You can check its complete syntax and options in the online API documentation ([http://www.symfony-project.org/api/1_2/](http://www.symfony-project.org/api/1_2/)). 48 48 49 49 Most of the time, helpers carry intelligence and save you long and complex coding: … … 119 119 => <link href="/stylesheets/style.css" media="screen" rel="stylesheet"type="text/css" /> 120 120 121 There are many other helpers in symfony, and it would take a full book to describe all of them. The best reference for helpers is the online API documentation ([http:// www.symfony-project.org/api/1_ 1/](http://www.symfony-project.org/api/1_1/)), where all the helpers are well documented, with their syntax, options, and examples.121 There are many other helpers in symfony, and it would take a full book to describe all of them. The best reference for helpers is the online API documentation ([http:// www.symfony-project.org/api/1_2/](http://www.symfony-project.org/api/1_2/)), where all the helpers are well documented, with their syntax, options, and examples. 122 122 123 123 #### Adding Your Own Helpers