ElasticsearchViewsJoin.php in Elasticsearch Connector 8.5
Same filename and directory in other branches
File
modules/elasticsearch_connector_views/src/Plugin/views/join/ElasticsearchViewsJoin.phpView source
<?php
namespace Drupal\elasticsearch_connector_views\Plugin\views\join;
use Drupal\views\Plugin\views\join\JoinPluginBase;
/**
* Represents a join in the Search API Views tables.
*
* Since the concept of joins does not exist in the Elasticsearch, this handler
* does nothing except override the default behavior.
*
* @ingroup views_join_handlers
*
* @ViewsJoin("elasticsearch_connector_views")
*/
class ElasticsearchViewsJoin extends JoinPluginBase {
/**
* {@inheritdoc}
*/
public function buildJoin($select_query, $table, $view_query) {
}
}
Classes
Name | Description |
---|---|
ElasticsearchViewsJoin | Represents a join in the Search API Views tables. |