Projet

Général

Profil

Paste
Télécharger (537 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / ctools / includes / export-ui.plugin-type.inc @ 7e72b748

1
<?php
2

    
3
/**
4
 * @file
5
 * Contains plugin type registration information for the context tool.
6
 *
7
 * Don't actually need to declare anything for these plugin types right now,
8
 * apart from the fact that they exist. So, an empty array.
9
 */
10

    
11
function ctools_export_ui_plugin_type(&$items) {
12
  $items['export_ui'] = array(
13
    'process' => array(
14
      'function' => 'ctools_export_ui_process',
15
      'file' => 'export-ui.inc',
16
      'path' => drupal_get_path('module', 'ctools') . '/includes',
17
    ),
18
    'classes' => array('handler'),
19
  );
20
}