You are here

function reference_table_formatter_ctools_plugin_type in Reference Table Formatter 7

Implements hook_ctools_plugin_type().

File

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

Code

function reference_table_formatter_ctools_plugin_type() {
  $plugins['reference_types'] = array(
    'classes' => array(
      'handler',
    ),
  );
  return $plugins;
}