class JoinTest

Same name in this branch
  1. 9 core/modules/views/tests/src/Kernel/Plugin/JoinTest.php \Drupal\Tests\views\Kernel\Plugin\JoinTest
Same name and namespace in other branches
  1. 11.x core/modules/views/tests/src/Kernel/Plugin/JoinTest.php \Drupal\Tests\views\Kernel\Plugin\JoinTest
  2. 11.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php \Drupal\views_test_data\Plugin\views\join\JoinTest

Defines a join test plugin.

Plugin annotation

@ViewsJoin("join_test");

Hierarchy

Expanded class hierarchy of JoinTest

1 file declares its use of JoinTest
JoinTest.php in core/modules/views/tests/src/Kernel/Plugin/JoinTest.php

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php, line 12

Namespace

Drupal\views_test_data\Plugin\views\join
View source
class JoinTest extends JoinPluginBase {
  
  /**
   * A value which is used to build an additional join condition.
   *
   * @var int
   */
  protected $joinValue;
  
  /**
   * Returns the joinValue property.
   *
   * @return int
   */
  public function getJoinValue() {
    return $this->joinValue;
  }
  
  /**
   * Sets the joinValue property.
   *
   * @param int $join_value
   *   The value of the join.
   */
  public function setJoinValue($join_value) {
    $this->joinValue = $join_value;
  }
  
  /**
   * {@inheritdoc}
   */
  public function buildJoin($select_query, $table, $view_query) {
    // Add an additional hardcoded condition to the query.
    $this->extra = 'views_test_data.uid = ' . $this->getJoinValue();
    parent::buildJoin($select_query, $table, $view_query);
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.