[MANUAL] English:
[zend.git] / documentation / manual / en / tutorials / paginator-intro.xml
blobde1ac6de9044895dfd940740d128732c7bb82146
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Reviewed: no -->
3 <sect1 id="learning.paginator.intro">
4     <title>Introduction</title>
6     <para>
7         Let's say you're creating a blogging application that will be home to your vast
8         collection of blog posts. There is a good chance that you do not want all of
9         your blog posts to appear on one single page when someone visits your blog.
10         An obvious solution would be to only display a small number of blog posts
11         on the screen at a time, and allow the user to browse through the different pages,
12         much like your favorite search engine shows you the result of your search query.
13         <classname>Zend_Paginator</classname> is designed to help you achieve the goal of dividing
14         collections of data in smaller, more manageable sets more easily, with more consistency,
15         and with less duplicate code.
16     </para>
18     <para>
19         <classname>Zend_Paginator</classname> uses Adapters to support various data sources and
20         ScrollingStyles to support various methods of showing the user which pages are available.
21         In later sections of this text we will have a closer look at what these things
22         are and how they can help you to make the most out of <classname>Zend_Paginator</classname>.
23     </para>
25     <para>
26         Before going in-depth, we will have a look at some simple examples first.
27         After these simple examples, we will see how <classname>Zend_Paginator</classname> supports
28         the most common use-case; paginating database results.
29     </para>
31     <para>
32         This introduction has given you a quick overview of <classname>Zend_Paginator</classname>.
33         To get started and to have a look at some code snippets, let's have a look at some
34         simple examples.
35     </para>
36 </sect1>