public function Block::getVisibilityConditions in Drupal 9
Same name and namespace in other branches
- 8 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 object.
- Block::setVisibilityConfig in core/
modules/ block/ src/ Entity/ Block.php - Sets the visibility condition configuration.
File
- core/
modules/ block/ src/ Entity/ Block.php, line 283
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;
}