ctools_export_ui.inc 675 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * @file
  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. );