You are here

function linkit_ctools_plugin_type in Linkit 7.3

Same name and namespace in other branches
  1. 7.2 linkit.module \linkit_ctools_plugin_type()

Implements hook_ctools_plugin_TYPE() to inform the plugin system that Linkit owns Linkit plugin types.

File

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

Code

function linkit_ctools_plugin_type() {
  $plugins['linkit_search'] = array(
    'child plugins' => TRUE,
    'classes' => array(
      'handler',
    ),
  );
  $plugins['linkit_insert'] = array(
    'process' => array(
      'function' => 'linkit_insert_plugin_process',
    ),
  );
  $plugins['linkit_attribute'] = array();
  return $plugins;
}