PHP code example of solarismedia / visual-paginator
1. Go to this page and download the library: Download solarismedia/visual-paginator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
solarismedia / visual-paginator example snippets
use IPub\VisualPaginator\Components as VisualPaginator;
class SomePresenter extends Nette\Application\UI\Presenter
{
/**
* @var Model
*/
private $dataModel;
public function renderDefault()
{
$someItemsList = $this->dataModel->findAll();
// Get visual paginator components
$visualPaginator = $this['visualPaginator'];
// Get paginator form visual paginator
$paginator = $visualPaginator->getPaginator();
// Define items count per one page
$paginator->itemsPerPage = 10;
// Define total items in list
$paginator->itemCount = $someItemsList->count();
// Apply limits to list
$someItemsList->limit($paginator->itemsPerPage, $paginator->offset);
}
/**
* Create items paginator
*
* @return VisualPaginator\Control
*/
protected function createComponentVisualPaginator()
{
// Init visual paginator
$control = new VisualPaginator\Control;
return $control;
}
}
use IPub\VisualPaginator\Components as VisualPaginator;
class SomePresenter extends Nette\Application\UI\Presenter
{
/**
* Create items paginator
*
* @return VisualPaginator\Control
*/
protected function createComponentVisualPaginator()
{
// Init visual paginator
$control = new VisualPaginator\Control;
// Enable ajax (by default)
$control->enableAjax();
// Or disable ajax
$control->disableAjax();
return $control;
}
}
use IPub\VisualPaginator\Components as VisualPaginator;
class SomePresenter extends Nette\Application\UI\Presenter
{
public function renderDefault()
{
$that = $this;
//....
// Define event for example to redraw snippets
$this['visualPaginator']->onShowPage[] = (function ($component, $page) use ($that) {
if ($that->isAjax()){
$that->invalidateControl();
}
});
}
}
use IPub\VisualPaginator\Components as VisualPaginator;
class SomePresenter extends Nette\Application\UI\Presenter
{
/**
* Create items paginator
*
* @return VisualPaginator\Control
*/
protected function createComponentVisualPaginator()
{
// Init visual paginator
$control = new VisualPaginator\Control;
// To use bootstrap default template
$control->setTemplateFile('bootstrap.latte');
// To use your own template
$control->setTemplateFile('path/to/your/latte/file.latte');
return $control;
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.