public function Mini::postExecute in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/pager/Mini.php \Drupal\views\Plugin\views\pager\Mini::postExecute()
Perform any needed actions just after the query executing.
Overrides PagerPluginBase::postExecute
File
- core/
modules/ views/ src/ Plugin/ views/ pager/ Mini.php, line 76 - Contains \Drupal\views\Plugin\views\pager\Mini.
Class
- Mini
- The plugin to handle mini pager.
Namespace
Drupal\views\Plugin\views\pagerCode
public function postExecute(&$result) {
// In query() one more item might have been retrieved than necessary. If so,
// the next link needs to be displayed and the item removed.
if ($this
->getItemsPerPage() > 0 && count($result) > $this
->getItemsPerPage()) {
array_pop($result);
// Make sure the pager shows the next link by setting the total items to
// the biggest possible number but prevent failing calculations like
// ceil(PHP_INT_MAX) we take PHP_INT_MAX / 2.
$total = PHP_INT_MAX / 2;
}
else {
$total = $this
->getCurrentPage() * $this
->getItemsPerPage() + count($result);
}
$this->total_items = $total;
}