Projet

Général

Profil

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

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

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