function Block::conditionPluginManager
Gets the condition plugin manager.
Return value
\Drupal\Core\Executable\ExecutableManagerInterface The condition plugin manager.
1 call to Block::conditionPluginManager()
- Block::getVisibilityConditions in core/
modules/ block/ src/ Entity/ Block.php  - Gets conditions for this block.
 
File
- 
              core/
modules/ block/ src/ Entity/ Block.php, line 305  
Class
- Block
 - Defines a Block configuration entity class.
 
Namespace
Drupal\block\EntityCode
protected function conditionPluginManager() {
  if (!isset($this->conditionPluginManager)) {
    $this->conditionPluginManager = \Drupal::service('plugin.manager.condition');
  }
  return $this->conditionPluginManager;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.