You are here

function linkit_search_plugin_load_all in Linkit 7.3

Fetch metadata for all Linkit search plugins.

Return value

An array of arrays with information about all available Linkit search plugins.

1 call to linkit_search_plugin_load_all()
_linkit_build_search_plugin_form_fields in plugins/export_ui/linkit_profiles.inc
Append search plugin form element to the profile form.

File

./linkit.module, line 237
Main file for Linkit module.

Code

function linkit_search_plugin_load_all() {
  ctools_include('plugins');
  $plugins = ctools_get_plugins('linkit', 'linkit_search');

  // If you alter the plugin handler, be sure the new handler is registerd or
  // you include it in some other way.
  drupal_alter('linkit_search_plugins', $plugins);
  return $plugins;
}