function DefaultSummary::buildOptionsForm
Same name in other branches
- 9 core/modules/views/src/Plugin/views/style/DefaultSummary.php \Drupal\views\Plugin\views\style\DefaultSummary::buildOptionsForm()
- 10 core/modules/views/src/Plugin/views/style/DefaultSummary.php \Drupal\views\Plugin\views\style\DefaultSummary::buildOptionsForm()
- 11.x core/modules/views/src/Plugin/views/style/DefaultSummary.php \Drupal\views\Plugin\views\style\DefaultSummary::buildOptionsForm()
Overrides StylePluginBase::buildOptionsForm
1 call to DefaultSummary::buildOptionsForm()
- UnformattedSummary::buildOptionsForm in core/
modules/ views/ src/ Plugin/ views/ style/ UnformattedSummary.php - Provide a form to edit options for this plugin.
1 method overrides DefaultSummary::buildOptionsForm()
- UnformattedSummary::buildOptionsForm in core/
modules/ views/ src/ Plugin/ views/ style/ UnformattedSummary.php - Provide a form to edit options for this plugin.
File
-
core/
modules/ views/ src/ Plugin/ views/ style/ DefaultSummary.php, line 39
Class
- DefaultSummary
- The default style plugin for summaries.
Namespace
Drupal\views\Plugin\views\styleCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
$form['base_path'] = [
'#type' => 'textfield',
'#title' => $this->t('Base path'),
'#default_value' => $this->options['base_path'],
'#description' => $this->t('Define the base path for links in this summary
view, i.e. http://example.com/<strong>your_view_path/archive</strong>.
Do not include beginning and ending forward slash. If this value
is empty, views will use the first path found as the base path,
in page displays, or / if no path could be found.'),
];
$form['count'] = [
'#type' => 'checkbox',
'#default_value' => !empty($this->options['count']),
'#title' => $this->t('Display record count with link'),
];
$form['override'] = [
'#type' => 'checkbox',
'#default_value' => !empty($this->options['override']),
'#title' => $this->t('Override number of items to display'),
];
$form['items_per_page'] = [
'#type' => 'textfield',
'#title' => $this->t('Items to display'),
'#default_value' => $this->options['items_per_page'],
'#states' => [
'visible' => [
':input[name="options[summary][options][' . $this->definition['id'] . '][override]"]' => [
'checked' => TRUE,
],
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.