[GENERIC] Zend_Translate:
[zend.git] / documentation / manual / en / tutorials / plugins-conclusion.xml
blobb44e184ea2eb3dd975ce1b3c2962cc920c96bc4f
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Reviewed: no -->
3 <sect1 id="learning.plugins.conclusion">
4     <title>Conclusion</title>
6     <para>
7         Understanding the concept of prefix paths and overriding existing plugins will help you with
8         your understanding of many components within the framework. Plugins are used in a variety of
9         places:
10     </para>
12     <itemizedlist>
13         <listitem>
14             <para>
15                 <classname>Zend_Application</classname>: resources.
16             </para>
17         </listitem>
19         <listitem>
20             <para>
21                 <classname>Zend_Controller_Action</classname>: action helpers.
22             </para>
23         </listitem>
25         <listitem>
26             <para>
27                 <classname>Zend_Feed_Reader</classname>: plugins.
28             </para>
29         </listitem>
31         <listitem>
32             <para>
33                 <classname>Zend_Form</classname>: elements, filters, validators, and decorators.
34             </para>
35         </listitem>
37         <listitem>
38             <para>
39                 <classname>Zend_View</classname>: view helpers.
40             </para>
41         </listitem>
42     </itemizedlist>
44     <para>
45         And several more places, besides. Learn the concepts early so you can leverage this
46         important extension point in Zend Framework.
47     </para>
49     <note>
50         <title>Caveat</title>
52         <para>
53             We'll note here that <classname>Zend_Controller_Front</classname> has a plugin system -
54             but it does not adhere to any of the guidelines offerred in this tutorial. The plugins
55             registered with the front controller must be instantiated directly and registered
56             individually with it. The reason for this is that this system predates any other plugin
57             system in the framework, and changes to it must be carefully weighed to ensure existing
58             plugins written by developers continue to work with it.
59         </para>
60     </note>
61 </sect1>