
| Current Path : /var/www/html/rocksensor1/web/core/modules/views/src/Plugin/views/join/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/modules/views/src/Plugin/views/join/JoinPluginInterface.php |
<?php
namespace Drupal\views\Plugin\views\join;
/**
* Represents a join and creates the SQL necessary to implement the join.
*
* Extensions of this class can be used to create more interesting joins.
*/
interface JoinPluginInterface {
/**
* Builds the SQL for the join this object represents.
*
* When possible, try to use table alias instead of table names.
*
* @param $select_query
* A select query object.
* @param $table
* The base table to join.
* @param \Drupal\views\Plugin\views\query\QueryPluginBase $view_query
* The source views query.
*/
public function buildJoin($select_query, $table, $view_query);
}