| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Reviewed: no -->
- <!-- EN-Revision: 23282 -->
- <sect2 id="zend.application.available-resources.view">
- <title>Zend_Application_Resource_View</title>
- <para>
- <classname>Zend_Application_Resource_View</classname>は<classname>Zend_View</classname>の
- インスタンスを設定するために使用できます。設定オプションは
- <link linkend="zend.view.introduction.options"><classname>Zend_View</classname>オプション</link>に
- 従います。
- </para>
- <para>
- 一旦ビューのインスタンスを設定したら、
- <classname>Zend_Controller_Action_Helper_ViewRenderer</classname>のインスタンスを
- 作成して、<classname>Zend_Controller_Action_HelperBroker</classname>
- (後ほどそこから取得できるでしょう)でViewRendererを登録します。
- </para>
- <example id="zend.application.available-resources.view.configExample">
- <title>サンプルビューリソースの設定</title>
- <para>
- 下記はビューリソースを設定する方法を示す <acronym>INI</acronym> スニペットサンプルです。
- </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>
|