function Permission::defineOptions

Same name and namespace in other branches
  1. 9 core/modules/user/src/Plugin/views/access/Permission.php \Drupal\user\Plugin\views\access\Permission::defineOptions()
  2. 10 core/modules/user/src/Plugin/views/access/Permission.php \Drupal\user\Plugin\views\access\Permission::defineOptions()
  3. 11.x core/modules/user/src/Plugin/views/access/Permission.php \Drupal\user\Plugin\views\access\Permission::defineOptions()

Overrides PluginBase::defineOptions

File

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

Class

Permission
Access plugin that provides permission-based access control.

Namespace

Drupal\user\Plugin\views\access

Code

protected function defineOptions() {
    $options = parent::defineOptions();
    $options['perm'] = [
        'default' => 'access content',
    ];
    return $options;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.