class SearchApiEntity in Search API 8
Handles the display of entity reference fields in Search API Views.
Plugin annotation
@ViewsField("search_api_entity");
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\views\Plugin\views\PluginBase implements DependentPluginInterface, ContainerFactoryPluginInterface, TrustedCallbackInterface, ViewsPluginInterface
- class \Drupal\views\Plugin\views\HandlerBase implements ViewsHandlerInterface
- class \Drupal\views\Plugin\views\field\FieldPluginBase implements FieldHandlerInterface
- class \Drupal\search_api\Plugin\views\field\SearchApiStandard implements MultiItemsFieldHandlerInterface uses SearchApiFieldTrait
- class \Drupal\search_api\Plugin\views\field\SearchApiEntity uses FieldAPIHandlerTrait
- class \Drupal\search_api\Plugin\views\field\SearchApiStandard implements MultiItemsFieldHandlerInterface uses SearchApiFieldTrait
- class \Drupal\views\Plugin\views\field\FieldPluginBase implements FieldHandlerInterface
- class \Drupal\views\Plugin\views\HandlerBase implements ViewsHandlerInterface
- class \Drupal\views\Plugin\views\PluginBase implements DependentPluginInterface, ContainerFactoryPluginInterface, TrustedCallbackInterface, ViewsPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of SearchApiEntity
File
- src/
Plugin/ views/ field/ SearchApiEntity.php, line 21
Namespace
Drupal\search_api\Plugin\views\fieldView source
class SearchApiEntity extends SearchApiStandard {
use FieldAPIHandlerTrait;
/**
* The entity display repository manager.
*
* @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface|null
*/
protected $entityDisplayRepository;
/**
* The entity type bundle info.
*
* @var \Drupal\Core\Entity\EntityTypeBundleInfo|null
*/
protected $entityTypeBundleInfo;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
/** @var static $field */
$field = parent::create($container, $configuration, $plugin_id, $plugin_definition);
$field
->setEntityDisplayRepository($container
->get('entity_display.repository'));
$field
->setEntityTypeBundleInfo($container
->get('entity_type.bundle.info'));
return $field;
}
/**
* Retrieves the entity display repository.
*
* @return \Drupal\Core\Entity\EntityDisplayRepositoryInterface
* The entity entity display repository.
*/
public function getEntityDisplayRepository() {
return $this->entityDisplayRepository ?: \Drupal::service('entity_display.repository');
}
/**
* Sets the entity display repository.
*
* @param \Drupal\Core\Entity\EntityDisplayRepositoryInterface $entity_display_repository
* The new entity display repository.
*
* @return $this
*/
public function setEntityDisplayRepository(EntityDisplayRepositoryInterface $entity_display_repository) {
$this->entityDisplayRepository = $entity_display_repository;
return $this;
}
/**
* Retrieves the entity type bundle info.
*
* @return \Drupal\Core\Entity\EntityTypeBundleInfo
* The entity type bundle info.
*/
public function getEntityTypeBundleInfo() {
return $this->entityTypeBundleInfo ?: \Drupal::service('entity_type.bundle.info');
}
/**
* Sets the entity type bundle info.
*
* @param \Drupal\Core\Entity\EntityTypeBundleInfo $entity_type_bundle_info
* The new entity type bundle info.
*
* @return $this
*/
public function setEntityTypeBundleInfo(EntityTypeBundleInfo $entity_type_bundle_info) {
$this->entityTypeBundleInfo = $entity_type_bundle_info;
return $this;
}
/**
* {@inheritdoc}
*/
public function defineOptions() {
$options = parent::defineOptions();
$options['display_methods'] = [
'default' => [],
];
return $options;
}
/**
* {@inheritdoc}
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$entity_type_id = $this
->getTargetEntityTypeId();
$view_modes = [];
$bundles = [];
if ($entity_type_id) {
$bundles = $this
->getEntityTypeBundleInfo()
->getBundleInfo($entity_type_id);
// In case the field definition specifies the bundles to expect, restrict
// the displayed bundles to those.
$settings = $this
->getFieldDefinition()
->getSettings();
if (!empty($settings['handler_settings']['target_bundles'])) {
$bundles = array_intersect_key($bundles, $settings['handler_settings']['target_bundles']);
}
foreach ($bundles as $bundle => $info) {
$view_modes[$bundle] = $this
->getEntityDisplayRepository()
->getViewModeOptionsByBundle($entity_type_id, $bundle);
}
}
foreach ($bundles as $bundle => $info) {
$args['@bundle'] = $info['label'];
$form['display_methods'][$bundle]['display_method'] = [
'#type' => 'select',
'#title' => $this
->t('Display for "@bundle" bundle', $args),
'#options' => [
'' => $this
->t('Hide'),
'id' => $this
->t('Raw ID'),
'label' => $this
->t('Only label'),
],
'#default_value' => 'label',
];
$display_method = $this
->getDisplayMethod($bundle);
if ($display_method !== NULL) {
$form['display_methods'][$bundle]['display_method']['#default_value'] = $display_method;
}
if (!empty($view_modes[$bundle])) {
$form['display_methods'][$bundle]['display_method']['#options']['view_mode'] = $this
->t('Entity view');
if (count($view_modes[$bundle]) > 1) {
$form['display_methods'][$bundle]['view_mode'] = [
'#type' => 'select',
'#title' => $this
->t('View mode for "@bundle" bundle', $args),
'#options' => $view_modes[$bundle],
'#states' => [
'visible' => [
':input[name="options[display_methods][' . $bundle . '][display_method]"]' => [
'value' => 'view_mode',
],
],
],
];
if (isset($this->options['display_methods'][$bundle]['view_mode'])) {
$form['display_methods'][$bundle]['view_mode']['#default_value'] = $this->options['display_methods'][$bundle]['view_mode'];
}
}
else {
reset($view_modes[$bundle]);
$form['display_methods'][$bundle]['view_mode'] = [
'#type' => 'value',
'#value' => key($view_modes[$bundle]),
];
}
}
if (count($bundles) == 1) {
$form['display_methods'][$bundle]['display_method']['#title'] = $this
->t('Display method');
if (!empty($form['display_methods'][$bundle]['view_mode'])) {
$form['display_methods'][$bundle]['view_mode']['#title'] = $this
->t('View mode');
}
}
}
$form['link_to_item']['#description'] .= ' ' . $this
->t('This will only take effect for entities for which only the entity label is displayed.');
$form['link_to_item']['#weight'] = 5;
unset($form['use_highlighting']);
}
/**
* Return the entity type ID of the entity this field handler should display.
*
* @return string|null
* The entity type ID, or NULL if it couldn't be found.
*/
public function getTargetEntityTypeId() {
$field_definition = $this
->getFieldDefinition();
if ($field_definition
->getType() === 'field_item:comment') {
return 'comment';
}
return $field_definition
->getSetting('target_type');
}
/**
* {@inheritdoc}
*/
public function query() {
$this
->addRetrievedProperty($this
->getCombinedPropertyPath());
}
/**
* {@inheritdoc}
*/
public function preRender(&$values) {
parent::preRender($values);
// The parent method will just have loaded the entity IDs. We now multi-load
// the actual objects.
$property_path = $this
->getCombinedPropertyPath();
foreach ($values as $i => $row) {
if (!empty($row->{$property_path})) {
foreach ((array) $row->{$property_path} as $j => $value) {
if (is_scalar($value)) {
$to_load[$value][] = [
$i,
$j,
];
}
}
}
}
if (empty($to_load)) {
return;
}
$entities = $this
->getEntityTypeManager()
->getStorage($this
->getTargetEntityTypeId())
->loadMultiple(array_keys($to_load));
$account = $this
->getQuery()
->getAccessAccount();
foreach ($entities as $id => $entity) {
$bundle = $entity
->bundle();
$operation = $this
->getDisplayMethod($bundle) == 'label' ? 'view label' : 'view';
if ($entity
->access($operation, $account)) {
foreach ($to_load[$id] as list($i, $j)) {
if ($entity
->access('view', $account)) {
$langcode = $values[$i]->search_api_language;
if ($entity instanceof TranslatableInterface && $entity
->hasTranslation($langcode)) {
$entity = $entity
->getTranslation($langcode);
}
$values[$i]->{$property_path}[$j] = $entity;
}
}
}
}
}
/**
* {@inheritdoc}
*/
public function render_item($count, $item) {
if (is_array($item['value'])) {
return $this
->getRenderer()
->render($item['value']);
}
return parent::render_item($count, $item);
}
/**
* {@inheritdoc}
*/
public function getItems(ResultRow $values) {
$property_path = $this
->getCombinedPropertyPath();
if (!empty($values->{$property_path})) {
$items = [];
foreach ((array) $values->{$property_path} as $value) {
if ($value instanceof EntityInterface) {
$item = $this
->getItem($value);
if ($item) {
$items[] = $item;
}
}
}
return $items;
}
return [];
}
/**
* Creates an item for the given entity.
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity.
*
* @return array|null
* NULL if the entity should not be displayed. Otherwise, an associative
* array with at least "value" set, to either a string or a render array,
* and possibly also additional alter options.
*
* @throws \Drupal\Core\Entity\EntityMalformedException
* Thrown if the entity is malformed and a URL needs to be generated.
*/
protected function getItem(EntityInterface $entity) {
$bundle = $entity
->bundle();
$display_method = $this
->getDisplayMethod($bundle);
if (!$display_method) {
return NULL;
}
if (in_array($display_method, [
'id',
'label',
])) {
if ($display_method == 'label') {
$item['value'] = $entity
->label();
}
else {
$item['value'] = $entity
->id();
}
if ($this->options['link_to_item']) {
$item['make_link'] = TRUE;
$item['url'] = $entity
->toUrl('canonical');
}
return $item;
}
$view_mode = $this->options['display_methods'][$bundle]['view_mode'];
$build = $this
->getEntityTypeManager()
->getViewBuilder($entity
->getEntityTypeId())
->view($entity, $view_mode);
return [
'value' => $build,
];
}
/**
* Retrieves the display method configured for a certain bundle.
*
* @param string $bundle
* The bundle of the entity being displayed.
*
* @return string|null
* The "display_method" option selected for this bundle, or NULL if none was
* selected yet.
*/
protected function getDisplayMethod($bundle) {
return $this->options['display_methods'][$bundle]['display_method'] ?? NULL;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FieldAPIHandlerTrait:: |
protected | property | The entity field manager. | |
FieldAPIHandlerTrait:: |
protected | property | The field definition. | |
FieldAPIHandlerTrait:: |
protected | property | The field storage definition. | |
FieldAPIHandlerTrait:: |
protected | function | Returns the entity field manager. | |
FieldAPIHandlerTrait:: |
protected | function | Returns the entity manager. | |
FieldAPIHandlerTrait:: |
protected | function | Gets the field definition. | |
FieldAPIHandlerTrait:: |
protected | function | Gets the field storage configuration. | 1 |
FieldPluginBase:: |
public | property | Stores additional fields which get added to the query. | |
FieldPluginBase:: |
public | property | ||
FieldPluginBase:: |
public | property | ||
FieldPluginBase:: |
protected | property | Keeps track of the last render index. | |
FieldPluginBase:: |
protected | property | The link generator. | |
FieldPluginBase:: |
public | property | The field value prior to any rewriting. | |
FieldPluginBase:: |
protected | property |
Stores the render API renderer. Overrides PluginBase:: |
1 |
FieldPluginBase:: |
protected | function | Add 'additional' fields to the query. | |
FieldPluginBase:: |
protected | function | Add any special tokens this field might use for itself. | 4 |
FieldPluginBase:: |
public | function |
Return a string representing this handler's name in the UI. Overrides HandlerBase:: |
|
FieldPluginBase:: |
public | function |
Provide extra data to the administration form Overrides HandlerBase:: |
|
FieldPluginBase:: |
public | function |
Renders a field using advanced settings. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
protected | function | Determine if this field can allow advanced rendering. | |
FieldPluginBase:: |
protected | function | Document any special tokens this field might use for itself. | 3 |
FieldPluginBase:: |
public | function |
Returns the class of the field. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public | function |
Returns the class of the field's label. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public | function |
Returns an HTML element for the label based upon the field's element type. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public | function |
Returns an HTML element based upon the field's element type. Overrides FieldHandlerInterface:: |
1 |
FieldPluginBase:: |
public | function |
Returns the class of the field's wrapper. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public | function |
Returns an HTML element for the wrapper based upon the field's element type. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public | function |
Provides a list of elements valid for field HTML. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
protected | function | Returns a token placeholder for the current field. | |
FieldPluginBase:: |
protected | function | Returns all field labels of fields before this field. | |
FieldPluginBase:: |
public | function |
Gets the 'render' tokens to use for advanced rendering. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
protected | function | Recursive function to add replacements for nested query string parameters. | |
FieldPluginBase:: |
public | function |
Initialize the plugin. Overrides HandlerBase:: |
14 |
FieldPluginBase:: |
public | function |
Checks if a field value is empty. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public | function |
Gets this field's label. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
protected | function | Gets the link generator. | |
FieldPluginBase:: |
public | function |
Runs after every field has been rendered. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public | function |
Renders the field. Overrides FieldHandlerInterface:: |
27 |
FieldPluginBase:: |
protected | function | Render this field as user-defined altered text. | |
FieldPluginBase:: |
protected | function | Render this field as a link, with the info from a fieldset set by the user. | |
FieldPluginBase:: |
public | function |
Performs an advanced text render for the item. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
protected | function | Trims the field down to the specified length. | |
FieldPluginBase:: |
constant | Indicator of the renderText() method for rendering the whole element. (if no render_item() method is available). | ||
FieldPluginBase:: |
constant | Indicator of the renderText() method for rendering the empty text. | ||
FieldPluginBase:: |
constant | Indicator of the renderText() method for rendering a single item. (If no render_item() is present). | ||
FieldPluginBase:: |
public | function |
Performs some cleanup tasks on the options array before saving it. Overrides PluginBase:: |
1 |
FieldPluginBase:: |
public | function |
Passes values to drupal_render() using $this->themeFunctions() as #theme. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public | function |
Provide a full list of possible theme templates used by this style. Overrides PluginBase:: |
|
FieldPluginBase:: |
public | function |
Replaces a value with tokens from the last field. Overrides FieldHandlerInterface:: |
|
FieldPluginBase:: |
public static | function | Trims the field down to the specified length. | |
FieldPluginBase:: |
public | function |
Determines if this field will be available as an option to group the result
by in the style settings. Overrides FieldHandlerInterface:: |
|
HandlerBase:: |
public | property | With field you can override the realField if the real field is not set. | |
HandlerBase:: |
protected | property | The module handler. | 3 |
HandlerBase:: |
public | property | Where the $query object will reside: | 7 |
HandlerBase:: |
public | property | The actual field in the database table, maybe different on other kind of query plugins/special handlers. | |
HandlerBase:: |
public | property | The relationship used for this field. | |
HandlerBase:: |
public | property | The table this handler is attached to. | |
HandlerBase:: |
public | property | The alias of the table of this handler which is used in the query. | |
HandlerBase:: |
protected | property | The views data service. | |
HandlerBase:: |
public | function | Take input from exposed handlers and assign to this handler, if necessary. | 1 |
HandlerBase:: |
public | function |
Check whether given user has access to this handler. Overrides ViewsHandlerInterface:: |
4 |
HandlerBase:: |
public static | function |
Breaks x,y,z and x+y+z into an array. Overrides ViewsHandlerInterface:: |
|
HandlerBase:: |
public | function |
Determines if the handler is considered 'broken', meaning it's a
placeholder used when a handler can't be found. Overrides ViewsHandlerInterface:: |
|
HandlerBase:: |
public | function | Render our chunk of the exposed handler form when selecting | 1 |
HandlerBase:: |
public | function | Form for exposed handler options. | 2 |
HandlerBase:: |
public | function | Provide a form for setting options. | 1 |
HandlerBase:: |
public | function | Provide a form for aggregation settings. | 1 |
HandlerBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides PluginBase:: |
10 |
HandlerBase:: |
public | function | Determine if a handler can be exposed. | 2 |
HandlerBase:: |
protected | function | Transform a string by a certain method. | |
HandlerBase:: |
public | function | Set new exposed option defaults when exposed setting is flipped on. | 2 |
HandlerBase:: |
public | function | Provide defaults for the handler. | |
HandlerBase:: |
public | function | Displays the Expose form. | |
HandlerBase:: |
public | function | Get information about the exposed form for the form renderer. | 1 |
HandlerBase:: |
public | function | Creates cross-database SQL dates. | 2 |
HandlerBase:: |
public | function | Creates cross-database SQL date formatting. | 2 |
HandlerBase:: |
public | function |
Shortcut to get a handler's raw field value. Overrides ViewsHandlerInterface:: |
|
HandlerBase:: |
public | function |
Get the join object that should be used for this handler. Overrides ViewsHandlerInterface:: |
|
HandlerBase:: |
protected | function | Gets the module handler. | |
HandlerBase:: |
public static | function |
Fetches a handler to join one table to a primary table from the data cache. Overrides ViewsHandlerInterface:: |
|
HandlerBase:: |
protected | function | Gets views data service. | |
HandlerBase:: |
public | function | If a handler has 'extra options' it will get a little settings widget and another form called extra_options. | 1 |
HandlerBase:: |
public | function | Returns TRUE if the exposed filter works like a grouped filter. | 1 |
HandlerBase:: |
public | function | Determine if this item is 'exposed', meaning it provides form elements to let users modify the view. | |
HandlerBase:: |
public | function | Define if the exposed input has to be submitted multiple times. This is TRUE when exposed filters grouped are using checkboxes as widgets. | 1 |
HandlerBase:: |
protected | function | Provides a unique placeholders for handlers. | |
HandlerBase:: |
public | function |
Run after the view is executed, before the result is cached. Overrides ViewsHandlerInterface:: |
|
HandlerBase:: |
public | function |
Run before the view is built. Overrides ViewsHandlerInterface:: |
2 |
HandlerBase:: |
public | function | Sets the module handler. | |
HandlerBase:: |
public | function |
Called just prior to query(), this lets a handler set up any relationship
it needs. Overrides ViewsHandlerInterface:: |
|
HandlerBase:: |
public | function | ||
HandlerBase:: |
public | function | Shortcut to display the expose/hide button. | 2 |
HandlerBase:: |
public | function |
Shortcut to display the exposed options form. Overrides ViewsHandlerInterface:: |
|
HandlerBase:: |
public | function | If set to remember exposed input in the session, store it there. | 1 |
HandlerBase:: |
public | function | Submit the exposed handler form | |
HandlerBase:: |
public | function | Perform any necessary changes to the form exposes prior to storage. There is no need for this function to actually store the data. | |
HandlerBase:: |
public | function | Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data. | |
HandlerBase:: |
public | function | Calculates options stored on the handler | 1 |
HandlerBase:: |
public | function | Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data. | 1 |
HandlerBase:: |
public | function | A submit handler that is used for storing temporary items when using multi-step changes, such as ajax requests. | |
HandlerBase:: |
public | function | Provides the handler some groupby. | 13 |
HandlerBase:: |
public | function |
Validate that the plugin is correct and can be saved. Overrides PluginBase:: |
2 |
HandlerBase:: |
public | function | Validate the exposed handler form | 4 |
HandlerBase:: |
public | function | Validate the options form. | 1 |
HandlerBase:: |
public | function | Validate the options form. | |
HandlerBase:: |
public | function |
Constructs a Handler object. Overrides PluginBase:: |
44 |
LoggerTrait:: |
protected | property | The logging channel to use. | |
LoggerTrait:: |
public | function | Retrieves the logger. | |
LoggerTrait:: |
protected | function | Logs an exception. | |
LoggerTrait:: |
public | function | Sets the logger. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
public | property | Plugins's definition | |
PluginBase:: |
public | property | The display object this plugin is for. | |
PluginBase:: |
public | property | Options for this plugin will be held here. | |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
protected | property | Denotes whether the plugin has an additional options form. | 8 |
PluginBase:: |
public | property | The top object of a view. | 1 |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Clears a plugin. Overrides ViewsPluginInterface:: |
2 |
PluginBase:: |
protected | function | Do the work to filter out stored options depending on the defined options. | |
PluginBase:: |
public | function |
Filter out stored options depending on the defined options. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public | function |
Returns an array of available token replacements. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function |
Returns the plugin provider. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public | function |
Adds elements for available core tokens to a form. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public | function |
Returns a string with any core tokens replaced. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
constant | Include entity row languages when listing languages. | ||
PluginBase:: |
constant | Include negotiated languages when listing languages. | ||
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
protected | function | Makes an array of languages, optionally including special languages. | |
PluginBase:: |
public | function |
Return the human readable name of the display. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public static | function |
Moves form elements into fieldsets for presentation purposes. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public static | function |
Flattens the structure of form elements. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public static | function | Returns substitutions for Views queries for languages. | |
PluginBase:: |
protected | function | Fills up the options of the plugin with defaults. | |
PluginBase:: |
public | function |
Returns the summary of the settings in the display. Overrides ViewsPluginInterface:: |
6 |
PluginBase:: |
public static | function |
Lists the trusted callbacks provided by the implementing class. Overrides TrustedCallbackInterface:: |
6 |
PluginBase:: |
public | function |
Unpack options over our existing defaults, drilling down into arrays
so that defaults don't get totally blown away. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public | function |
Returns the usesOptions property. Overrides ViewsPluginInterface:: |
8 |
PluginBase:: |
public | function |
Validate the options form. Overrides ViewsPluginInterface:: |
15 |
PluginBase:: |
protected | function | Replaces Views' tokens in a given string. The resulting string will be sanitized with Xss::filterAdmin. | 1 |
PluginBase:: |
constant | Query string to indicate the site default language. | ||
SearchApiEntity:: |
protected | property | The entity display repository manager. | |
SearchApiEntity:: |
protected | property | The entity type bundle info. | |
SearchApiEntity:: |
public | function |
Provide a form to edit options for this plugin. Overrides SearchApiFieldTrait:: |
|
SearchApiEntity:: |
public static | function |
Creates an instance of the plugin. Overrides PluginBase:: |
|
SearchApiEntity:: |
public | function |
Defines the options used by this plugin. Overrides SearchApiFieldTrait:: |
|
SearchApiEntity:: |
protected | function | Retrieves the display method configured for a certain bundle. | |
SearchApiEntity:: |
public | function | Retrieves the entity display repository. | |
SearchApiEntity:: |
public | function | Retrieves the entity type bundle info. | |
SearchApiEntity:: |
protected | function | Creates an item for the given entity. | |
SearchApiEntity:: |
public | function |
Gets an array of items for the field. Overrides SearchApiFieldTrait:: |
|
SearchApiEntity:: |
public | function | Return the entity type ID of the entity this field handler should display. | |
SearchApiEntity:: |
public | function |
Runs before any fields are rendered. Overrides SearchApiFieldTrait:: |
|
SearchApiEntity:: |
public | function |
Add anything to the query that we might need to. Overrides SearchApiFieldTrait:: |
|
SearchApiEntity:: |
public | function |
Renders a single item of a row. Overrides SearchApiStandard:: |
|
SearchApiEntity:: |
public | function | Sets the entity display repository. | |
SearchApiEntity:: |
public | function | Sets the entity type bundle info. | |
SearchApiFieldTrait:: |
protected | property | The account to use for access checks for this search. | |
SearchApiFieldTrait:: |
protected | property | The combined property path of this field. | |
SearchApiFieldTrait:: |
protected | property | The datasource ID of this field, if any. | |
SearchApiFieldTrait:: |
protected | property | The entity type manager. | |
SearchApiFieldTrait:: |
protected | property | The fields helper. | |
SearchApiFieldTrait:: |
protected | property | Contains overridden values to be returned on the next getValue() call. | |
SearchApiFieldTrait:: |
protected | property | Array of replacement property paths to use when getting field values. | |
SearchApiFieldTrait:: |
protected | property | Contains the properties needed by this field handler. | |
SearchApiFieldTrait:: |
protected | property | Associative array keyed by property paths for which to skip access checks. | |
SearchApiFieldTrait:: |
protected | property | The typed data manager. | |
SearchApiFieldTrait:: |
protected | property | Index in the current row's field values that is currently displayed. | |
SearchApiFieldTrait:: |
protected | function | Adds a property to be retrieved. | |
SearchApiFieldTrait:: |
protected | function | Checks whether the searching user has access to the given value. | |
SearchApiFieldTrait:: |
protected | function | Replaces extracted property values with highlighted field values. | |
SearchApiFieldTrait:: |
public | function | Adds an ORDER BY clause to the query for click sort columns. | |
SearchApiFieldTrait:: |
public | function | Determines if this field is click sortable. | |
SearchApiFieldTrait:: |
protected | function | Combines raw field values with highlighted ones to get a complete set. | |
SearchApiFieldTrait:: |
protected | function | Creates a combined property path. | |
SearchApiFieldTrait:: |
protected | function | Expands the properties to retrieve for this field. | |
SearchApiFieldTrait:: |
protected | function | Extracts a processor-based property from an item. | |
SearchApiFieldTrait:: |
protected | function | Places extracted property values and objects into the result row. | |
SearchApiFieldTrait:: |
public | function | Retrieves the combined property path of this field. | |
SearchApiFieldTrait:: |
public | function | Retrieves the ID of the datasource to which this field belongs. | |
SearchApiFieldTrait:: |
public | function | Gets the entity matching the current row and relationship. | 1 |
SearchApiFieldTrait:: |
public | function | Retrieves the entity type manager. | |
SearchApiFieldTrait:: |
public | function | Retrieves the fields helper. | |
SearchApiFieldTrait:: |
protected | function | Retrieves an alter options array for linking the given value to its item. | |
SearchApiFieldTrait:: |
abstract protected | function | Returns the Render API renderer. | |
SearchApiFieldTrait:: |
public | function | Retrieves the typed data manager. | |
SearchApiFieldTrait:: |
public | function | Retrieves the value that's supposed to be rendered. | |
SearchApiFieldTrait:: |
protected | function | Determines and prepares the property values that need to be extracted. | |
SearchApiFieldTrait:: |
protected | function | Determines whether this field is active for the given row. | 1 |
SearchApiFieldTrait:: |
public | function | Determines whether this field can have multiple values. | |
SearchApiFieldTrait:: |
protected | function | Pre-loads the result objects, where necessary. | |
SearchApiFieldTrait:: |
public | function | Renders all items in this field together. | 1 |
SearchApiFieldTrait:: |
public | function | Sanitizes the value for output. | |
SearchApiFieldTrait:: |
public | function | Sets the entity type manager. | |
SearchApiFieldTrait:: |
public | function | Sets the fields helper. | |
SearchApiFieldTrait:: |
public | function | Sets the typed data manager. | |
SearchApiHandlerTrait:: |
public | function | Overrides the Views handlers' ensureMyTable() method. | |
SearchApiHandlerTrait:: |
public | function | Determines the entity type used by this handler. | 1 |
SearchApiHandlerTrait:: |
protected | function | Returns the active search index. | |
SearchApiHandlerTrait:: |
public | function | Retrieves the query plugin. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TrustedCallbackInterface:: |
constant | Untrusted callbacks throw exceptions. | ||
TrustedCallbackInterface:: |
constant | Untrusted callbacks trigger silenced E_USER_DEPRECATION errors. | ||
TrustedCallbackInterface:: |
constant | Untrusted callbacks trigger E_USER_WARNING errors. |