1 <?xml version="1.0" encoding="UTF-8"?>
3 <sect1 id="learning.quickstart.create-layout">
4 <title>Create A Layout</title>
7 You may have noticed that the view scripts in the previous sections were HTML fragments- not
8 complete pages. This is by design; we want our actions to return content only related to the
9 action itself, not the application as a whole.
13 Now we must compose that generated content into a full HTML page. We'd also like to have a
14 consistent look and feel for the application. We will use a global site layout to accomplish
19 There are two design patterns that Zend Framework uses to implement layouts: <ulink
20 url="http://martinfowler.com/eaaCatalog/twoStepView.html">Two Step View</ulink> and
22 url="http://java.sun.com/blueprints/corej2eepatterns/Patterns/CompositeView.html">Composite
23 View</ulink>. <emphasis>Two Step View</emphasis> is usually associated with the <ulink
24 url="http://www.martinfowler.com/eaaCatalog/transformView.html">Transform View</ulink>
25 pattern; the basic idea is that your application view creates a representation that is then
26 injected into the master view for final transformation. The <emphasis>Composite
27 View</emphasis> pattern deals with a view made of one or more atomic, application views.
31 In Zend Framework, <link linkend="zend.layout">Zend_Layout</link> combines the ideas behind
32 these patterns. Instead of each action view script needing to include site-wide artifacts,
33 they can simply focus on their own responsibilities.
37 Occasionally, however, you may need application-specific information in your site-wide view
38 script. Fortunately, Zend Framework provides a variety of view
39 <emphasis>placeholders</emphasis> to allow you to provide such information from your action
44 To get started using <classname>Zend_Layout</classname>, first we need to inform our
45 bootstrap to use the <classname>Layout</classname> resource. This can be done using the
46 <command>zf enable layout</command> command:
49 <programlisting language="shell"><![CDATA[
51 Layouts have been enabled, and a default layout created at
52 application/layouts/scripts/layout.phtml
53 A layout entry has been added to the application config file.
57 As noted by the command,
58 <filename>application/configs/application.ini</filename> is updated, and
59 now contains the following within the <constant>production</constant>
63 <programlisting language="ini"><![CDATA[
64 ; application/configs/application.ini
66 ; Add to [production] section:
67 resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
71 The final INI file should look as follows:
74 <programlisting language="ini"><![CDATA[
75 ; application/configs/application.ini
78 ; PHP settings we want to initialize
79 phpSettings.display_startup_errors = 0
80 phpSettings.display_errors = 0
81 includePaths.library = APPLICATION_PATH "/../library"
82 bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
83 bootstrap.class = "Bootstrap"
84 appnamespace = "Application"
85 resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
86 resources.frontController.params.displayExceptions = 0
87 resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
89 [staging : production]
91 [testing : production]
92 phpSettings.display_startup_errors = 1
93 phpSettings.display_errors = 1
95 [development : production]
96 phpSettings.display_startup_errors = 1
97 phpSettings.display_errors = 1
101 This directive tells your application to look for layout view scripts in
102 <filename>application/layouts/scripts</filename>. If you examine your directory tree, you'll
103 see that this directory has been created for you now, with the file
104 <filename>layout.phtml</filename>.
108 We also want to ensure we have an XHTML DocType declaration for our application. To enable
109 this, we need to add a resource to our bootstrap.
113 The simplest way to add a bootstrap resource is to simply create a protected method
114 beginning with the phrase <methodname>_init</methodname>. In this case, we want to
115 initialize the doctype, so we'll create an <methodname>_initDoctype()</methodname> method
116 within our bootstrap class:
119 <programlisting language="php"><![CDATA[
120 // application/Bootstrap.php
122 class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
124 protected function _initDoctype()
131 Within that method, we need to hint to the view to use the appropriate doctype. But where
132 will the view object come from? The easy solution is to initialize the
133 <classname>View</classname> resource; once we have, we can pull the view object from the
134 bootstrap and use it.
138 To initialize the view resource, add the following line to your
139 <filename>application/configs/application.ini</filename> file, in the section marked
140 <constant>production</constant>:
143 <programlisting language="ini"><![CDATA[
144 ; application/configs/application.ini
146 ; Add to [production] section:
151 This tells us to initialize the view with no options (the '[]' indicates that the "view" key
152 is an array, and we pass nothing to it).
156 Now that we have a view, let's flesh out our <methodname>_initDoctype()</methodname> method.
157 In it, we will first ensure the <classname>View</classname> resource has run, fetch the view
158 object, and then configure it:
161 <programlisting language="php"><![CDATA[
162 // application/Bootstrap.php
164 class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
166 protected function _initDoctype()
168 $this->bootstrap('view');
169 $view = $this->getResource('view');
170 $view->doctype('XHTML1_STRICT');
176 Now that we've initialized <classname>Zend_Layout</classname> and set the Doctype, let's
177 create our site-wide layout:
180 <programlisting language="php"><![CDATA[
181 <!-- application/layouts/scripts/layout.phtml -->
182 <?php echo $this->doctype() ?>
183 <html xmlns="http://www.w3.org/1999/xhtml">
185 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
186 <title>Zend Framework Quickstart Application</title>
187 <?php echo $this->headLink()->appendStylesheet('/css/global.css') ?>
190 <div id="header" style="background-color: #EEEEEE; height: 30px;">
191 <div id="header-logo" style="float: left">
192 <b>ZF Quickstart Application</b>
194 <div id="header-navigation" style="float: right">
195 <a href="<?php echo $this->url(
196 array('controller'=>'guestbook'),
198 true) ?>">Guestbook</a>
202 <?php echo $this->layout()->content ?>
209 We grab our application content using the <methodname>layout()</methodname> view helper, and
210 accessing the "content" key. You may render to other response segments if you wish to, but
211 in most cases, this is all that's necessary.
215 Note also the use of the <methodname>headLink()</methodname> placeholder. This is an easy
216 way to generate the HTML for <link> elements, as well as to keep track of them
217 throughout your application. If you need to add additional CSS sheets to support a single
218 action, you can do so, and be assured it will be present in the final rendered page.
222 <title>Checkpoint</title>
225 Now go to "http://localhost" and check out the source. You should see your XHTML header,
226 head, title, and body sections.