Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ctools / plugins / export_ui / ctools_export_ui.inc @ e4c061ad

1
<?php
2

    
3
/**
4
 * The default plugin exists only to provide the base class. Other plugins
5
 * which do not provide a class will get this class instead. Any classes
6
 * provided should use this class as their parent:
7
 *
8
 * @code
9
 *   'handler' => array(
10
 *     'class' => 'ctools_export_ui_mine',
11
 *     'parent' => 'ctools_export_ui',
12
 *   ),
13
 * @endcode
14
 *
15
 * Using the above notation will ensure that this plugin's is loaded before
16
 * the child plugin's class and avoid whitescreens.
17
 */
18
$plugin = array(
19
  // As this is the base class plugin, it shouldn't declare any menu items.
20
  'has menu' => FALSE,
21
  'handler' => array(
22
    'class' => 'ctools_export_ui',
23
  ),
24
);