You are here

public function Permission::summaryTitle in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/views/access/Permission.php \Drupal\user\Plugin\views\access\Permission::summaryTitle()

Returns the summary of the settings in the display.

Overrides AccessPluginBase::summaryTitle

File

core/modules/user/src/Plugin/views/access/Permission.php, line 94

Class

Permission
Access plugin that provides permission-based access control.

Namespace

Drupal\user\Plugin\views\access

Code

public function summaryTitle() {
  $permissions = $this->permissionHandler
    ->getPermissions();
  if (isset($permissions[$this->options['perm']])) {
    return $permissions[$this->options['perm']]['title'];
  }
  return $this
    ->t($this->options['perm']);
}