You are here

function ctools_get_access_plugins in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 includes/context.inc \ctools_get_access_plugins()

Fetch metadata for all access control plugins.

Return value

array 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 1818
Contains code related to the ctools system of 'context'.

Code

function ctools_get_access_plugins() {
  ctools_include('plugins');
  return ctools_get_plugins('ctools', 'access');
}