You are here

function entityreference_ctools_plugin_type in Entity reference 7

Implements hook_ctools_plugin_type().

File

./entityreference.module, line 32
Entityreference primary module file.

Code

function entityreference_ctools_plugin_type() {
  $plugins['selection'] = array(
    'classes' => array(
      'class',
    ),
  );
  $plugins['behavior'] = array(
    'classes' => array(
      'class',
    ),
    'process' => 'entityreference_behavior_plugin_process',
  );
  return $plugins;
}