ctools_export_ui.inc 665 B

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