ViewsStyle::$no_ui

Whether the plugin should be not selectable in the UI. If it's set to TRUE, you can still use it via the API in config files. Type: bool File core/modules/views/src/Annotation/ViewsStyle.php, line 83 Class ViewsStyle Defines a Plugin annotation object for views style plugins. Namespace Drupal\views\Annotation Code public $no_ui;

ViewsStyle::$base

The base tables on which this style plugin can be used. If no base table is specified the plugin can be used with all tables. Type: array File core/modules/views/src/Annotation/ViewsStyle.php, line 74 Class ViewsStyle Defines a Plugin annotation object for views style plugins. Namespace Drupal\views\Annotation Code public $base;

ViewsStyle

Defines a Plugin annotation object for views style plugins. Hierarchy class \Drupal\Component\Annotation\Plugin implements AnnotationInterfaceclass \Drupal\views\Annotation\ViewsPluginAnnotationBase implements AnnotationInterfaceclass \Drupal\views\Annotation\ViewsStyle See also \Drupal\views\Plugin\views\style\StylePluginBase Related topics Annotations Annotations for class discovery and metadata description. Views style plugins Plugins that control how the collection of results is rende

ViewsStyle::$id

The plugin ID. Type: string File core/modules/views/src/Annotation/ViewsStyle.php, line 21 Class ViewsStyle Defines a Plugin annotation object for views style plugins. Namespace Drupal\views\Annotation Code public $id;

ViewsStyle::$display_types

The types of the display this plugin can be used with. For example the Feed display defines the type 'feed', so only rss style and row plugins can be used in the views UI. Type: array File core/modules/views/src/Annotation/ViewsStyle.php, line 65 Class ViewsStyle Defines a Plugin annotation object for views style plugins. Namespace Drupal\views\Annotation Code public $display_types;

ViewsSort

Defines a Plugin annotation object for views sort handlers. Hierarchy class \Drupal\Component\Annotation\AnnotationBase implements AnnotationInterfaceclass \Drupal\Component\Annotation\PluginIDclass \Drupal\views\Annotation\ViewsHandlerAnnotationBaseclass \Drupal\views\Annotation\ViewsSort See also \Drupal\views\Plugin\views\sort\SortPluginBase Related topics Annotations Annotations for class discovery and metadata description. Views sort handler plugins Plugins that handle sorting for V

ViewsSearchQuery::words

public ViewsSearchQuery::words() Returns the words property. Return value array The positive search keywords. File core/modules/search/src/ViewsSearchQuery.php, line 28 Class ViewsSearchQuery Extends the core SearchQuery to be able to gets its protected values. Namespace Drupal\search Code public function words() { return $this->words; }

ViewsSearchQuery::simple

public ViewsSearchQuery::simple() Returns the simple property. Return value bool TRUE if it is a simple query, and FALSE if it is complicated (phrases or LIKE). File core/modules/search/src/ViewsSearchQuery.php, line 39 Class ViewsSearchQuery Extends the core SearchQuery to be able to gets its protected values. Namespace Drupal\search Code public function simple() { return $this->simple; }

ViewsSearchQuery

Extends the core SearchQuery to be able to gets its protected values. Hierarchy class \Drupal\Core\Database\Query\SelectExtender implements SelectInterfaceclass \Drupal\search\SearchQueryclass \Drupal\search\ViewsSearchQuery File core/modules/search/src/ViewsSearchQuery.php, line 10 Namespace Drupal\search Members Name Modifiers Type Description SearchQuery::$conditions protected property Conditions that are used for exact searches. SearchQuery::$executedPrepare pr

ViewsSearchQuery::conditionReplaceString

ViewsSearchQuery::conditionReplaceString($search, $replace, &$condition) Replaces the original condition with a custom one from views recursively. Parameters string $search: The searched value. string $replace: The value which replaces the search value. array $condition: The query conditions array in which the string is replaced. This is an item from a \Drupal\Core\Database\Query\Condition::conditions array, which must have a 'field' element. File core/modules/search/src/ViewsSearchQuery.p