Exemple #1
0
 function listing($locator)
 {
     $usersession = $locator->get('UserSession');
     $db = $locator->get('Db');
     $template = $this->_load('controller')->template('listing');
     // create a data object that has the interface needed by the Pager object
     $datasource = new A_Pagination_Adapter_Db($db, "SELECT * FROM `blog_posts` WHERE post_type='post'");
     // create a request processor to set pager from GET parameters
     $pager = new A_Pagination_Request($datasource);
     // initialize using values from $_GET
     $pager->process($locator->get('Request'));
     // create a "standard" view object to create pagination links
     $view = new A_Pagination_View_Standard($pager);
     $rows = $pager->getItems();
     $template->set('rows', $rows);
     $template->set('links', $view->render());
     // display the pagination links
     $this->response->set('maincontent', $template->render());
 }
for ($i = 0; $i <= 750; ++$i) {
    $myarray[$i]['title'] = 'This is row ' . $i;
    $myarray[$i]['month'] = date('F', time() + $i * 60 * 60 * 24 * 30);
}
// create a data object that has the interface needed by the Pager object
$datasource = new Datasource($myarray);
// create a request processor to set pager from GET parameters
$pager = new A_Pagination_Request($datasource);
$pager->setRangeSize(3)->process();
#include 'A/Pagination/View/Standard.php';
$view1 = new A_Pagination_View_Standard($pager);
$view2 = new A_Pagination_View_Standard($pager);
$view2->alwaysShowFirstLast();
$view3 = new A_Pagination_View_Standard($pager);
$view3->alwaysShowPreviousNext();
$view4 = new A_Pagination_View_Standard($pager, false, true);
$view4->alwaysShowFirstLast();
$view4->alwaysShowPreviousNext();
?>

<h3>Standard</h3>
<pre>$view = new A_Pagination_View_Standard($pager);</pre>
<div><?php 
echo $view1->render();
?>
</div>

<h3>Always Show First & Last</h3>
<pre>$view = new A_Pagination_View_Standard($pager);
$view->alwaysShowFirstLast();</pre>
<div><?php 
<html>
<head>
<title>Skeleton - Pagination example - Standard Request</title>
</head>
<body>
<?php 
include 'config.php';
include dirname(__FILE__) . '/../../A/autoload.php';
// create a data object that has the interface needed by the Pager object
$datasource = new A_Pagination_Adapter_File('constitution.txt');
// create a request processor to set pager from GET parameters
$pager = new A_Pagination_Request($datasource);
// set core values based on request
$pager->process();
// create a new standard view
$view = new A_Pagination_View_Standard($pager);
// retrieve items on current page
$rows = $pager->getItems();
// Set up view internally. For first/last, label is optional. If no label is passed, the number will be displayed.
$view->first('First')->previous('Previous')->range()->next('Next')->last('Last');
// display the data
echo "<div>{$view->render()}</div>";
echo '<table border="1">';
$n = 1;
foreach ($rows as $value) {
    echo '<tr>';
    echo '<td>' . $n++ . '.</td><td>' . $value['line'] . '</td>';
    echo '</tr>';
}
echo '</table>';
echo "<div>{$view->render()}</div>";
<?php 
include 'config.php';
include dirname(__FILE__) . '/../../A/autoload.php';
// initialize an array for testing
for ($i = 0; $i <= 750; ++$i) {
    $myarray[$i]['title'] = 'This is row ' . $i;
    $myarray[$i]['month'] = date('F', time() + $i * 60 * 60 * 24 * 30);
}
// create a data object that has the interface needed by the Pager object
$datasource = new Datasource($myarray);
// create a request processor to set pager from GET parameters
$pager = new A_Pagination_Request($datasource);
// set range (number of links on either side of current page) and process core based on request
$pager->setRangeSize(3)->process();
// create a new standard view
$view = new A_Pagination_View_Standard($pager);
// retrieve items on current page
$rows = $pager->getItems();
// Set up links in $link array
$links = '';
$links .= $view->link()->first('First');
$links .= $view->link()->previous('Previous');
$links .= $view->link()->range();
$links .= $view->link()->next('Next');
$links .= $view->link()->last('Last');
// display the paging links
echo "<div>{$links}</div>";
// display the data
echo '<table border="1">';
echo '<tr><th>' . $view->link()->order('', 'Row') . '</th><th>' . $view->link()->order('title', 'Title') . '</th><th>' . $view->link()->order('month', 'Month') . '</th></tr>';
$n = 1;
Exemple #5
0
 public function __construct($adapter, $pageSize = false, $currentPage = false)
 {
     parent::__construct(new A_Pagination_Request($adapter, $pageSize, $currentPage));
 }