File: Zend_Paginator-Introduction.xml

package info (click to toggle)
zendframework 1.12.9%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 133,584 kB
  • sloc: xml: 1,311,829; php: 570,173; sh: 170; makefile: 125; sql: 121
file content (47 lines) | stat: -rw-r--r-- 1,466 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<!-- Reviewed: no -->
<sect1 id="zend.paginator.introduction">
    <title>Introduction</title>

    <para>
        <classname>Zend_Paginator</classname> is a flexible component for paginating
        collections of data and presenting that data to users.
    </para>

    <para>
        The primary design goals of <classname>Zend_Paginator</classname> are as follows:

        <itemizedlist>
            <listitem>
                <para>
                    Paginate arbitrary data, not just relational databases
                </para>
            </listitem>

            <listitem>
                <para>
                    Fetch only the results that need to be displayed
                </para>
            </listitem>

            <listitem>
                <para>
                    Do not force users to adhere to only one way of displaying
                    data or rendering pagination controls
                </para>
            </listitem>

            <listitem>
                <para>
                    Loosely couple <classname>Zend_Paginator</classname> to other Zend
                    Framework components so that users who wish to use it
                    independently of <classname>Zend_View</classname>,
                    <classname>Zend_Db</classname>, etc. can do so
                </para>
            </listitem>
        </itemizedlist>
    </para>
</sect1>
<!--
vim:se ts=4 sw=4 et:
-->