function ArgumentPluginBase::default_summary_form in Views (for Drupal 7) 8.3
Provide a form for selecting further summary options when the default action is set to display one.
File
- lib/
Drupal/ views/ Plugin/ views/ argument/ ArgumentPluginBase.php, line 562 - Definition of Drupal\views\Plugin\views\argument\ArgumentPluginBase.
Class
- ArgumentPluginBase
- Base class for arguments.
Namespace
Drupal\views\Plugin\views\argumentCode
function default_summary_form(&$form, &$form_state) {
$style_plugins = views_get_plugin_definitions('style');
$summary_plugins = array();
$format_options = array();
foreach ($style_plugins as $key => $plugin) {
if (isset($plugin['type']) && $plugin['type'] == 'summary') {
$summary_plugins[$key] = $plugin;
$format_options[$key] = $plugin['title'];
}
}
$form['summary'] = array(
// Views custom key, moves this element to the appropriate container
// under the radio button.
'#argument_option' => 'summary',
);
$form['summary']['sort_order'] = array(
'#type' => 'radios',
'#title' => t('Sort order'),
'#options' => array(
'asc' => t('Ascending'),
'desc' => t('Descending'),
),
'#default_value' => $this->options['summary']['sort_order'],
'#states' => array(
'visible' => array(
':input[name="options[default_action]"]' => array(
'value' => 'summary',
),
),
),
);
$form['summary']['number_of_records'] = array(
'#type' => 'radios',
'#title' => t('Sort by'),
'#default_value' => $this->options['summary']['number_of_records'],
'#options' => array(
0 => $this
->get_sort_name(),
1 => t('Number of records'),
),
'#states' => array(
'visible' => array(
':input[name="options[default_action]"]' => array(
'value' => 'summary',
),
),
),
);
$form['summary']['format'] = array(
'#type' => 'radios',
'#title' => t('Format'),
'#options' => $format_options,
'#default_value' => $this->options['summary']['format'],
'#states' => array(
'visible' => array(
':input[name="options[default_action]"]' => array(
'value' => 'summary',
),
),
),
);
foreach ($summary_plugins as $id => $info) {
$plugin = $this
->get_plugin('style', $id);
if (!$plugin
->usesOptions()) {
continue;
}
if ($plugin) {
$form['summary']['options'][$id] = array(
'#prefix' => '<div id="edit-options-summary-options-' . $id . '-wrapper">',
'#suffix' => '</div>',
'#id' => 'edit-options-summary-options-' . $id,
'#type' => 'item',
'#input' => TRUE,
// trick it into checking input to make #process run
'#states' => array(
'visible' => array(
':input[name="options[default_action]"]' => array(
'value' => 'summary',
),
':input[name="options[summary][format]"]' => array(
'value' => $id,
),
),
),
);
$options[$id] = $info['title'];
$plugin
->buildOptionsForm($form['summary']['options'][$id], $form_state);
}
}
}