1
|
<?php
|
2
|
|
3
|
/**
|
4
|
* @file
|
5
|
* 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
|
|
20
|
$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
|
);
|