You are here

function ctools_export_ui_plugin_type in Chaos Tool Suite (ctools) 7

@file Contains plugin type registration information for the context tool.

Don't actually need to declare anything for these plugin types right now, apart from the fact that they exist. So, an empty array.

File

includes/export-ui.plugin-type.inc, line 11
Contains plugin type registration information for the context tool.

Code

function ctools_export_ui_plugin_type(&$items) {
  $items['export_ui'] = array(
    'process' => array(
      'function' => 'ctools_export_ui_process',
      'file' => 'export-ui.inc',
      'path' => drupal_get_path('module', 'ctools') . '/includes',
    ),
    'classes' => array(
      'handler',
    ),
  );
}