You are here

function reference_table_formatter_load_plugins in Reference Table Formatter 7

Load all of the reference type plugins.

Return value

array

1 call to reference_table_formatter_load_plugins()
reference_table_formatter_field_formatter_info in ./reference_table_formatter.field.inc
Implements hook_field_formatter_info().

File

./reference_table_formatter.module, line 48
Format reference fields as tables of information.

Code

function reference_table_formatter_load_plugins() {
  ctools_include('plugins');
  return ctools_get_plugins('reference_table_formatter', 'reference_types');
}