EntityReferenceRevisions.php in Entity Reference Revisions 8
File
src/Plugin/views/style/EntityReferenceRevisions.php
View source
<?php
namespace Drupal\entity_reference_revisions\Plugin\views\style;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Plugin\views\style\StylePluginBase;
class EntityReferenceRevisions extends StylePluginBase {
protected $usesRowPlugin = TRUE;
protected $usesFields = TRUE;
protected $usesGrouping = FALSE;
protected function defineOptions() {
$options = parent::defineOptions();
$options['search_fields'] = array(
'default' => NULL,
);
return $options;
}
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$options = $this->displayHandler
->getFieldLabels(TRUE);
$form['search_fields'] = array(
'#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 = array();
foreach ($sets as $records) {
foreach ($records as $values) {
$output = $this->view->rowPlugin
->render($values);
$output = \Drupal::service('renderer')
->render($output);
$results[$values->{$id_field_alias}] = Xss::filterAdmin(preg_replace('/\\s\\s+/', ' ', str_replace("\n", '', $output)));
}
}
return $results;
}
public function evenEmpty() {
return TRUE;
}
}