commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / ctools / plugins / export_ui / ctools_export_ui.inc
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 );