You are here

export-ui.plugin-type.inc in Chaos Tool Suite (ctools) 7

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
View source
<?php

/**
 * @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.
 */
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',
    ),
  );
}

Functions

Namesort descending Description
ctools_export_ui_plugin_type @file Contains plugin type registration information for the context tool.