public function Block::getVisibilityConditions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/block/src/Entity/Block.php \Drupal\block\Entity\Block::getVisibilityConditions()
Gets conditions for this block.
Return value
\Drupal\Core\Condition\ConditionInterface[]|\Drupal\Core\Condition\ConditionPluginCollection An array or collection of configured condition plugins.
Overrides BlockInterface::getVisibilityConditions
2 calls to Block::getVisibilityConditions()
- Block::getPluginCollections in core/modules/ block/ src/ Entity/ Block.php 
- Gets the plugin collections used by this entity.
- Block::setVisibilityConfig in core/modules/ block/ src/ Entity/ Block.php 
- Sets the visibility condition configuration.
File
- core/modules/ block/ src/ Entity/ Block.php, line 278 
- Contains \Drupal\block\Entity\Block.
Class
- Block
- Defines a Block configuration entity class.
Namespace
Drupal\block\EntityCode
public function getVisibilityConditions() {
  if (!isset($this->visibilityCollection)) {
    $this->visibilityCollection = new ConditionPluginCollection($this
      ->conditionPluginManager(), $this
      ->get('visibility'));
  }
  return $this->visibilityCollection;
}