| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Reviewed: no -->
- <sect2 id="zend.application.available-resources.view">
- <title>Zend_Application_Resource_View</title>
- <para>
- <classname>Zend_Application_Resource_View</classname> can be used to configure
- a <classname>Zend_View</classname> instance. Configuration options are per <link
- linkend="zend.view.introduction.options">the <classname>Zend_View</classname>
- options</link>.
- </para>
- <para>
- Once done configuring the view instance, it creates an instance of
- <classname>Zend_Controller_Action_Helper_ViewRenderer</classname> and registers
- the ViewRenderer with <classname>Zend_Controller_Action_HelperBroker</classname>
- -- from which you may retrieve it later.
- </para>
- <example id="zend.application.available-resources.view.configExample">
- <title>Sample View resource configuration</title>
- <para>
- Below is a sample <acronym>INI</acronym> snippet showing how to configure the view
- resource.
- </para>
- <programlisting language="ini"><![CDATA[
- resources.view.encoding = "UTF-8"
- resources.view.basePath = APPLICATION_PATH "/views/"
- ]]></programlisting>
- </example>
- <sect3 id="zend.application.available-resources.view.doctype">
- <title>Defining doctype to use</title>
- <para>
- If you want to obtain more information about values, see <link
- linkend="zend.view.helpers.initial.doctype">Doctype Helper
- </link>.
- </para>
- <example id="zend.application.available-resources.view.doctypeExample">
- <title>Sample doctype configuration</title>
- <para>
- The following snippet shows how to set a doctype.
- </para>
- <programlisting language="ini"><![CDATA[
- resources.view.doctype = "HTML5"
- ]]></programlisting>
- </example>
- </sect3>
- <sect3 id="zend.application.available-resources.view.contentType">
- <title>Defining content type and encoding to use</title>
- <para>
- If you want to obtain more information about values, see <link
- linkend="zend.view.helpers.initial.headmeta">HeadMeta Helper
- </link>.
- </para>
- <example id="zend.application.available-resources.view.contentTypeExample">
- <title>Sample content type and encoding configuration</title>
- <para>
- The following snippet shows how to set a meta Content-Type.
- </para>
- <programlisting language="ini"><![CDATA[
- resources.view.contentType = "text/html; charset=UTF-8"
- ]]></programlisting>
- </example>
- <example id="zend.application.available-resources.view.charsetExample">
- <title>Sample encoding configuration for a HTML5 document</title>
- <para>
- The following snippet shows how to set a meta charset in HTML5-style.
- </para>
- <programlisting language="ini"><![CDATA[
- resources.view.doctype = "HTML5"
- resources.view.charset = "UTF-8"
- ]]></programlisting>
- </example>
- </sect3>
- </sect2>
|