You are here

function finder_element_handlers in Finder 7.2

Same name and namespace in other branches
  1. 6 finder.module \finder_element_handlers()
  2. 7 finder.module \finder_element_handlers()

Get a list of possible element types.

Return value

An array of element handlers from CTools plugins.

4 calls to finder_element_handlers()
finder::load_element_handlers in includes/finder.inc
Finder load element handlers.
finder_plugin_hooks in ./finder.module
Adds plugin hook definitions.
finder_ui_get_element_help in modules/finder_ui/includes/common.inc
Get element handlers and convert to options array.
finder_ui_get_element_options in modules/finder_ui/includes/common.inc
Get element handlers and convert to options array.

File

./finder.module, line 313
The finder module.

Code

function finder_element_handlers() {
  ctools_include('plugins');
  return ctools_get_plugins('finder', 'element_handler');
}