public function Result::buildOptionsForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/area/Result.php \Drupal\views\Plugin\views\area\Result::buildOptionsForm()
Provide a form to edit options for this plugin.
Overrides AreaPluginBase::buildOptionsForm
File
- core/
modules/ views/ src/ Plugin/ views/ area/ Result.php, line 40 - Contains \Drupal\views\Plugin\views\area\Result.
Class
- Result
- Views area handler to display some configurable result summary.
Namespace
Drupal\views\Plugin\views\areaCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$item_list = array(
'#theme' => 'item_list',
'#items' => array(
'@start -- the initial record number in the set',
'@end -- the last record number in the set',
'@total -- the total records in the set',
'@label -- the human-readable name of the view',
'@per_page -- the number of items per page',
'@current_page -- the current page number',
'@current_record_count -- the current page record count',
'@page_count -- the total page count',
),
);
$list = drupal_render($item_list);
$form['content'] = array(
'#title' => $this
->t('Display'),
'#type' => 'textarea',
'#rows' => 3,
'#default_value' => $this->options['content'],
'#description' => $this
->t('You may use HTML code in this field. The following tokens are supported:') . $list,
);
}