public function None::getItemsPerPage

Get how many items per page this pager will display.

All but the leanest pagers should probably return a value here, so most pagers will not need to override this method.

Overrides PagerPluginBase::getItemsPerPage

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/None.php, line 74
Definition of Drupal\views\Plugin\views\pager\None.

Class

None
Plugin for views without pagers.

Namespace

Drupal\views\Plugin\views\pager

Code

public function getItemsPerPage() {
  return 0;
}