X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Fmodules%2Fviews%2Fsrc%2FPlugin%2Fviews%2Fstyle%2FEntityReference.php;fp=web%2Fcore%2Fmodules%2Fviews%2Fsrc%2FPlugin%2Fviews%2Fstyle%2FEntityReference.php;h=e07a0f1858998d61ce539d5a79ea3bf272dc290f;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/web/core/modules/views/src/Plugin/views/style/EntityReference.php b/web/core/modules/views/src/Plugin/views/style/EntityReference.php new file mode 100644 index 000000000..e07a0f185 --- /dev/null +++ b/web/core/modules/views/src/Plugin/views/style/EntityReference.php @@ -0,0 +1,104 @@ + []]; + + return $options; + } + + /** + * {@inheritdoc} + */ + 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, + ]; + } + + /** + * {@inheritdoc} + */ + public function render() { + if (!empty($this->view->live_preview)) { + return parent::render(); + } + + // Group the rows according to the grouping field, if specified. + $sets = $this->renderGrouping($this->view->result, $this->options['grouping']); + + // Grab the alias of the 'id' field added by + // entity_reference_plugin_display. + $id_field_alias = $this->view->storage->get('base_field'); + + // @todo We don't display grouping info for now. Could be useful for select + // widget, though. + $results = []; + foreach ($sets as $records) { + foreach ($records as $values) { + $results[$values->{$id_field_alias}] = $this->view->rowPlugin->render($values); + // Sanitize HTML, remove line breaks and extra whitespace. + $results[$values->{$id_field_alias}]['#post_render'][] = function ($html, array $elements) { + return Xss::filterAdmin(preg_replace('/\s\s+/', ' ', str_replace("\n", '', $html))); + }; + } + } + return $results; + } + + /** + * {@inheritdoc} + */ + public function evenEmpty() { + return TRUE; + } + +}