Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. RefinableDependentAccessInterface.php

interface RefinableDependentAccessInterface

An interface to allow adding an access dependency.

@internal

Hierarchy

  • interface \Drupal\block_content\Access\DependentAccessInterface
    • interface \Drupal\block_content\Access\RefinableDependentAccessInterface extends \Drupal\block_content\Access\DependentAccessInterface

Expanded class hierarchy of RefinableDependentAccessInterface

All classes that implement RefinableDependentAccessInterface

3 files declare their use of RefinableDependentAccessInterface
BlockComponentRenderArray.php in core/modules/layout_builder/src/EventSubscriber/BlockComponentRenderArray.php
BlockContentInterface.php in core/modules/block_content/src/BlockContentInterface.php
InlineBlock.php in core/modules/layout_builder/src/Plugin/Block/InlineBlock.php

File

core/modules/block_content/src/Access/RefinableDependentAccessInterface.php, line 12

Namespace

Drupal\block_content\Access
View source
interface RefinableDependentAccessInterface extends DependentAccessInterface {
    
    /**
     * Sets the access dependency.
     *
     * If an access dependency is already set this will replace the existing
     * dependency.
     *
     * @param \Drupal\Core\Access\AccessibleInterface $access_dependency
     *   The object upon which access depends.
     *
     * @return $this
     */
    public function setAccessDependency(AccessibleInterface $access_dependency);
    
    /**
     * Adds an access dependency into the existing access dependency.
     *
     * If no existing dependency is currently set this will set the dependency
     * will be set to the new value.
     *
     * If there is an existing dependency and it is not an instance of
     * AccessGroupAnd the dependency will be set as a new AccessGroupAnd
     * instance with the existing and new dependencies as the members of the
     * group.
     *
     * If there is an existing dependency and it is an instance of AccessGroupAnd
     * the dependency will be added to the existing access group.
     *
     * @param \Drupal\Core\Access\AccessibleInterface $access_dependency
     *   The access dependency to merge.
     *
     * @return $this
     */
    public function addAccessDependency(AccessibleInterface $access_dependency);

}

Members

Title Sort descending Modifiers Object type Summary
DependentAccessInterface::getAccessDependency public function Gets the access dependency.
RefinableDependentAccessInterface::addAccessDependency public function Adds an access dependency into the existing access dependency.
RefinableDependentAccessInterface::setAccessDependency public function Sets the access dependency.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal