function hook_views_plugins_access_alter
Modify the list of available views access plugins.
This hook may be used to modify plugin properties after they have been specified by other modules.
Parameters
array $plugins: An array of all the existing plugin definitions, passed by reference.
See also
\Drupal\views\Plugin\ViewsPluginManager
Related topics
File
- 
              core/modules/ views/ views.api.php, line 949 
Code
function hook_views_plugins_access_alter(array &$plugins) {
  // Remove the available plugin because the users should not have access to it.
  unset($plugins['role']);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
