export-ui.plugin-type.inc 537 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file
  4. * Contains plugin type registration information for the context tool.
  5. *
  6. * Don't actually need to declare anything for these plugin types right now,
  7. * apart from the fact that they exist. So, an empty array.
  8. */
  9. function ctools_export_ui_plugin_type(&$items) {
  10. $items['export_ui'] = array(
  11. 'process' => array(
  12. 'function' => 'ctools_export_ui_process',
  13. 'file' => 'export-ui.inc',
  14. 'path' => drupal_get_path('module', 'ctools') . '/includes',
  15. ),
  16. 'classes' => array('handler'),
  17. );
  18. }