You are here

function linkit_attribute_plugin_load_all in Linkit 7.3

Fetch metadata for all Linkit attribute plugins.

Return value

An array of arrays with information about all available attribute plugins.

1 call to linkit_attribute_plugin_load_all()
_linkit_build_attribute_plugin_form_fields in plugins/export_ui/linkit_profiles.inc
Append attribute plugin form element to the profile form.

File

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

Code

function linkit_attribute_plugin_load_all() {
  ctools_include('plugins');

  // Load all attribute plugins.
  $attributes = ctools_get_plugins('linkit', 'linkit_attribute');
  return $attributes;
}