TreeERSelection.php in Views tree 8.2
File
src/Plugin/views/style/TreeERSelection.php
View source
<?php
namespace Drupal\views_tree\Plugin\views\style;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Form\FormStateInterface;
class TreeERSelection extends Tree {
protected function defineOptions() {
$options = parent::defineOptions();
$options['search_fields'] = [
'default' => NULL,
];
return $options;
}
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$options = $this->displayHandler
->getFieldLabels(TRUE);
$form['search_fields'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Search fields'),
'#options' => $options,
'#required' => TRUE,
'#default_value' => $this->options['search_fields'],
'#description' => $this
->t('Select the field(s) that will be searched when using the autocomplete widget.'),
'#weight' => -3,
];
}
public function render() {
if (!empty($this->view->live_preview)) {
return parent::render();
}
$sets = $this
->renderGrouping($this->view->result, $this->options['grouping']);
$id_field_alias = $this->view->storage
->get('base_field');
$results = [];
foreach ($sets as $records) {
foreach ($records as $values) {
$results[$values->{$id_field_alias}] = $this->view->rowPlugin
->render($values);
$results[$values->{$id_field_alias}]['#post_render'][] = function ($html, array $elements) {
return Xss::filterAdmin(preg_replace('/\\s\\s+/', ' ', str_replace("\n", '', $html)));
};
}
}
return $results;
}
public function evenEmpty() {
return TRUE;
}
}