public function HandlerBase::buildGroupByForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/HandlerBase.php \Drupal\views\Plugin\views\HandlerBase::buildGroupByForm()
Provide a form for aggregation settings.
1 call to HandlerBase::buildGroupByForm()
- Field::buildGroupByForm in core/
modules/ views/ src/ Plugin/ views/ field/ Field.php - Extend the groupby form with group columns.
1 method overrides HandlerBase::buildGroupByForm()
- Field::buildGroupByForm in core/
modules/ views/ src/ Plugin/ views/ field/ Field.php - Extend the groupby form with group columns.
File
- core/
modules/ views/ src/ Plugin/ views/ HandlerBase.php, line 347 - Contains \Drupal\views\Plugin\views\HandlerBase.
Class
- HandlerBase
- Base class for Views handler plugins.
Namespace
Drupal\views\Plugin\viewsCode
public function buildGroupByForm(&$form, FormStateInterface $form_state) {
$display_id = $form_state
->get('display_id');
$type = $form_state
->get('type');
$id = $form_state
->get('id');
$form['#section'] = $display_id . '-' . $type . '-' . $id;
$this->view
->initQuery();
$info = $this->view->query
->getAggregationInfo();
foreach ($info as $id => $aggregate) {
$group_types[$id] = $aggregate['title'];
}
$form['group_type'] = array(
'#type' => 'select',
'#title' => $this
->t('Aggregation type'),
'#default_value' => $this->options['group_type'],
'#description' => $this
->t('Select the aggregation function to use on this field.'),
'#options' => $group_types,
);
}