function restful_get_authentication_plugins in RESTful 7
Include CTools plugins and get all authentication plugins.
Return value
array All plugins for restful authentication.
1 call to restful_get_authentication_plugins()
- restful_get_restful_handler_by_name in ./
restful.module  - Return the handler based on major and minor version, and resource name.
 
File
- ./
restful.module, line 65  
Code
function restful_get_authentication_plugins() {
  ctools_include('plugins');
  return ctools_get_plugins('restful', 'authentication');
}