function ctools_get_access_plugins in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 includes/context.inc \ctools_get_access_plugins()
 
Fetch metadata for all access control plugins.
Return value
An array of arrays with information about all available access control plugins.
2 calls to ctools_get_access_plugins()
- ctools_context_handler_edit_criteria in includes/
context-task-handler.inc  - Form to choose context based selection rules for a task handler.
 - ctools_get_relevant_access_plugins in includes/
context.inc  - Fetch a list of access plugins that are available for a given list of contexts.
 
File
- includes/
context.inc, line 1313  - Contains code related to the ctools system of 'context'.
 
Code
function ctools_get_access_plugins() {
  ctools_include('plugins');
  return ctools_get_plugins('ctools', 'access');
}