public function CalendarPager::init in Calendar 8
Same name and namespace in other branches
- 8.2 src/Plugin/views/pager/CalendarPager.php \Drupal\calendar\Plugin\views\pager\CalendarPager::init()
Initialize the plugin.
Parameters
\Drupal\views\ViewExecutable $view: The view object.
\Drupal\views\Plugin\views\display\DisplayPluginBase $display: The display handler.
array $options: The options configured for this plugin.
Overrides PluginBase::init
File
- src/
Plugin/ views/ pager/ CalendarPager.php, line 40
Class
- CalendarPager
- The plugin to handle calendar pager.
Namespace
Drupal\calendar\Plugin\views\pagerCode
public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
parent::init($view, $display, $options);
$this->argument = CalendarHelper::getDateArgumentHandler($this->view);
$this
->setItemsPerPage(0);
}