You are here

interface DomainAccessManagerInterface in Domain Access 8

Checks the access status of entities based on domain settings.

Hierarchy

Expanded class hierarchy of DomainAccessManagerInterface

All classes that implement DomainAccessManagerInterface

32 files declare their use of DomainAccessManagerInterface
ActiveDomainDefaultArgumentTest.php in domain/tests/src/Functional/Views/ActiveDomainDefaultArgumentTest.php
DomainAccessAdd.php in domain_access/src/Plugin/Action/DomainAccessAdd.php
DomainAccessAddEditor.php in domain_access/src/Plugin/Action/DomainAccessAddEditor.php
DomainAccessAll.php in domain_access/src/Plugin/Action/DomainAccessAll.php
DomainAccessAllAffiliatesTest.php in domain_access/tests/src/Functional/DomainAccessAllAffiliatesTest.php

... See full list

File

domain_access/src/DomainAccessManagerInterface.php, line 13

Namespace

Drupal\domain_access
View source
interface DomainAccessManagerInterface {

  /**
   * The name of the node access control field.
   */
  const DOMAIN_ACCESS_FIELD = 'field_domain_access';

  /**
   * The name of the all affiliates field.
   */
  const DOMAIN_ACCESS_ALL_FIELD = 'field_domain_all_affiliates';

  /**
   * Get the domain access field values from an entity.
   *
   * @param \Drupal\Core\Entity\FieldableEntityInterface $entity
   *   The entity to retrieve field data from.
   * @param string $field_name
   *   The name of the field that holds our data.
   *
   * @return array
   *   The domain access field values.
   */
  public static function getAccessValues(FieldableEntityInterface $entity, $field_name = DomainAccessManagerInterface::DOMAIN_ACCESS_FIELD);

  /**
   * Get the all affiliates field values from an entity.
   *
   * @param \Drupal\Core\Entity\FieldableEntityInterface $entity
   *   The entity to retrieve field data from.
   *
   * @return bool
   *   Returns TRUE if the entity is sent to all affiliates.
   */
  public static function getAllValue(FieldableEntityInterface $entity);

  /**
   * Compare the entity values against a user's account assignments.
   *
   * @param \Drupal\Core\Entity\FieldableEntityInterface $entity
   *   The entity being checked for access.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   The account of the user performing the action.
   *
   * @return bool
   *   Returns TRUE if the user has access to the domain.
   */
  public function checkEntityAccess(FieldableEntityInterface $entity, AccountInterface $account);

  /**
   * Get the default field value for an entity.
   *
   * @param \Drupal\Core\Entity\FieldableEntityInterface $entity
   *   The entity being created.
   * @param \Drupal\Core\Field\FieldDefinitionInterface $definition
   *   The field being created.
   *
   * @return array
   *   The default field value(s).
   */
  public static function getDefaultValue(FieldableEntityInterface $entity, FieldDefinitionInterface $definition);

  /**
   * Checks that a user belongs to the domain and has a set of permissions.
   *
   * @param \Drupal\Core\Session\AccountInterface $account
   *   The user account.
   * @param \Drupal\domain\DomainInterface $domain
   *   The domain being checked.
   * @param array $permissions
   *   The relevant permissions to check.
   * @param string $conjunction
   *   The conjunction AND|OR to use when checking permissions.
   *
   * @return bool
   *   Returns TRUE if the user is assigned to the domain and has the necessary
   *   permissions.
   */
  public function hasDomainPermissions(AccountInterface $account, DomainInterface $domain, array $permissions, $conjunction = 'AND');

  /**
   * Get all possible URLs pointing to an entity.
   *
   * @param \Drupal\Core\Entity\FieldableEntityInterface $entity
   *   The entity to retrieve field data from.
   *
   * @return array
   *   An array of absolute URLs keyed by domain_id, with an known canonical id
   *   as the first element of the array.
   */
  public function getContentUrls(FieldableEntityInterface $entity);

}

Members

Namesort descending Modifiers Type Description Overrides
DomainAccessManagerInterface::checkEntityAccess public function Compare the entity values against a user's account assignments. 1
DomainAccessManagerInterface::DOMAIN_ACCESS_ALL_FIELD constant The name of the all affiliates field.
DomainAccessManagerInterface::DOMAIN_ACCESS_FIELD constant The name of the node access control field.
DomainAccessManagerInterface::getAccessValues public static function Get the domain access field values from an entity. 1
DomainAccessManagerInterface::getAllValue public static function Get the all affiliates field values from an entity. 1
DomainAccessManagerInterface::getContentUrls public function Get all possible URLs pointing to an entity. 1
DomainAccessManagerInterface::getDefaultValue public static function Get the default field value for an entity. 1
DomainAccessManagerInterface::hasDomainPermissions public function Checks that a user belongs to the domain and has a set of permissions. 1