You are here

public function JoinManager::__construct in Views (for Drupal 7) 8.3

Constructs a JoinManager object.

File

lib/Drupal/views/Plugin/Type/JoinManager.php, line 28
Definition of Drupal\views\Plugin\Type\JoinManager.

Class

JoinManager

Namespace

Drupal\views\Plugin\Type

Code

public function __construct() {

  // @todo Remove this hack in http://drupal.org/node/1708404.
  views_init();
  $this->discovery = new CacheDecorator(new AlterDecorator(new AnnotatedClassDiscovery('views', 'join'), 'views_plugins_join'), 'views:join', 'views_info');
  $this->factory = new DefaultFactory($this);
  $this->coreModules = views_core_modules();
}