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

ViewsSearchQuery::conditions

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

ViewsSearchQuery::matches

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

ViewsSearchQuery::publicParseSearchExpression

public ViewsSearchQuery::publicParseSearchExpression() Executes and returns the protected parseSearchExpression method. File core/modules/search/src/ViewsSearchQuery.php, line 56 Class ViewsSearchQuery Extends the core SearchQuery to be able to gets its protected values. Namespace Drupal\search Code public function publicParseSearchExpression() { return $this->parseSearchExpression(); }

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::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; }

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

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::$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;