2
0

Zend_Paginator-Introduction.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.paginator.introduction">
  4. <title>Introduction</title>
  5. <para>
  6. <classname>Zend_Paginator</classname> is a flexible component for paginating
  7. collections of data and presenting that data to users.
  8. </para>
  9. <para>
  10. The primary design goals of <classname>Zend_Paginator</classname> are as follows:
  11. <itemizedlist>
  12. <listitem>
  13. <para>
  14. Paginate arbitrary data, not just relational databases
  15. </para>
  16. </listitem>
  17. <listitem>
  18. <para>
  19. Fetch only the results that need to be displayed
  20. </para>
  21. </listitem>
  22. <listitem>
  23. <para>
  24. Do not force users to adhere to only one way of displaying
  25. data or rendering pagination controls
  26. </para>
  27. </listitem>
  28. <listitem>
  29. <para>
  30. Loosely couple <classname>Zend_Paginator</classname> to other Zend
  31. Framework components so that users who wish to use it
  32. independently of <classname>Zend_View</classname>,
  33. <classname>Zend_Db</classname>, etc. can do so
  34. </para>
  35. </listitem>
  36. </itemizedlist>
  37. </para>
  38. </sect1>
  39. <!--
  40. vim:se ts=4 sw=4 et:
  41. -->