You are here

class ConfigTranslationOverviewAccess in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/config_translation/src/Access/ConfigTranslationOverviewAccess.php \Drupal\config_translation\Access\ConfigTranslationOverviewAccess

Checks access for displaying the configuration translation overview.

Hierarchy

Expanded class hierarchy of ConfigTranslationOverviewAccess

1 string reference to 'ConfigTranslationOverviewAccess'
config_translation.services.yml in core/modules/config_translation/config_translation.services.yml
core/modules/config_translation/config_translation.services.yml
1 service uses ConfigTranslationOverviewAccess
config_translation.access.overview in core/modules/config_translation/config_translation.services.yml
Drupal\config_translation\Access\ConfigTranslationOverviewAccess

File

core/modules/config_translation/src/Access/ConfigTranslationOverviewAccess.php, line 20
Contains \Drupal\config_translation\Access\ConfigTranslationOverviewAccess.

Namespace

Drupal\config_translation\Access
View source
class ConfigTranslationOverviewAccess implements AccessInterface {

  /**
   * The mapper plugin discovery service.
   *
   * @var \Drupal\config_translation\ConfigMapperManagerInterface
   */
  protected $configMapperManager;

  /**
   * The language manager.
   *
   * @var \Drupal\Core\Language\LanguageManagerInterface
   */
  protected $languageManager;

  /**
   * The source language.
   *
   * @var \Drupal\Core\Language\LanguageInterface
   */
  protected $sourceLanguage;

  /**
   * Constructs a ConfigTranslationOverviewAccess object.
   *
   * @param \Drupal\config_translation\ConfigMapperManagerInterface $config_mapper_manager
   *   The mapper plugin discovery service.
   * @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
   *   The language manager service.
   */
  public function __construct(ConfigMapperManagerInterface $config_mapper_manager, LanguageManagerInterface $language_manager) {
    $this->configMapperManager = $config_mapper_manager;
    $this->languageManager = $language_manager;
  }

  /**
   * Checks access to the overview based on permissions and translatability.
   *
   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
   *   The route_match to check against.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   The currently logged in account.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public function access(RouteMatchInterface $route_match, AccountInterface $account) {
    $route = $route_match
      ->getRouteObject();

    /** @var \Drupal\config_translation\ConfigMapperInterface $mapper */
    $mapper = $this->configMapperManager
      ->createInstance($route
      ->getDefault('plugin_id'));
    $mapper
      ->populateFromRouteMatch($route_match);
    $this->sourceLanguage = $this->languageManager
      ->getLanguage($mapper
      ->getLangcode());

    // Allow access to the translation overview if the proper permission is
    // granted, the configuration has translatable pieces, and the source
    // language is not locked if it is present.
    $source_language_access = is_null($this->sourceLanguage) || !$this->sourceLanguage
      ->isLocked();
    $access = $account
      ->hasPermission('translate configuration') && $mapper
      ->hasSchema() && $mapper
      ->hasTranslatable() && $source_language_access;
    return AccessResult::allowedIf($access)
      ->cachePerPermissions();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigTranslationOverviewAccess::$configMapperManager protected property The mapper plugin discovery service.
ConfigTranslationOverviewAccess::$languageManager protected property The language manager.
ConfigTranslationOverviewAccess::$sourceLanguage protected property The source language.
ConfigTranslationOverviewAccess::access public function Checks access to the overview based on permissions and translatability. 1
ConfigTranslationOverviewAccess::__construct public function Constructs a ConfigTranslationOverviewAccess object.