public function None::buildOptionsForm in Views (for Drupal 7) 8.3
Provide the default form for setting options.
Overrides PluginBase::buildOptionsForm
File
- lib/
Drupal/ views/ Plugin/ views/ pager/ None.php, line 52 - Definition of Drupal\views\Plugin\views\pager\None.
Class
- None
- Plugin for views without pagers.
Namespace
Drupal\views\Plugin\views\pagerCode
public function buildOptionsForm(&$form, &$form_state) {
parent::buildOptionsForm($form, $form_state);
$form['offset'] = array(
'#type' => 'textfield',
'#title' => t('Offset'),
'#description' => t('The number of items to skip. For example, if this field is 3, the first 3 items will be skipped and not displayed.'),
'#default_value' => $this->options['offset'],
);
}