2
0

Zend_Navigation-Pages.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.navigation.pages" xmlns:xi="http://www.w3.org/2001/XInclude">
  4. <title>Pages</title>
  5. <para>
  6. <classname>Zend_Navigation</classname> ships with two page types:
  7. <itemizedlist>
  8. <listitem>
  9. <para>
  10. <link linkend="zend.navigation.pages.mvc">MVC pages</link>
  11. – using the class <classname>Zend_Navigation_Page_Mvc</classname>
  12. </para>
  13. </listitem>
  14. <listitem>
  15. <para>
  16. <link linkend="zend.navigation.pages.uri">URI pages</link>
  17. – using the class <classname>Zend_Navigation_Page_Uri</classname>
  18. </para>
  19. </listitem>
  20. </itemizedlist>
  21. MVC pages are link to on-site web pages, and are defined using MVC
  22. parameters (<code>action</code>, <code>controller</code>,
  23. <code>module</code>, <code>route</code>, <code>params</code>). URI
  24. pages are defined by a single property <code>uri</code>, which give
  25. you the full flexibility to link off-site pages or do other things
  26. with the generated links (e.g. an URI that turns into
  27. <code>&lt;a href="#"&gt;foo&lt;a&gt;</code>).
  28. </para>
  29. <xi:include href="Zend_Navigation-Pages-Common.xml" />
  30. <xi:include href="Zend_Navigation-Pages-MVC.xml" />
  31. <xi:include href="Zend_Navigation-Pages-URI.xml" />
  32. <xi:include href="Zend_Navigation-Pages-Custom.xml" />
  33. <xi:include href="Zend_Navigation-Pages-Factory.xml" />
  34. </sect1>