context.inc 686 B

123456789101112131415161718192021222324
  1. <?php
  2. $plugin = array(
  3. 'access' => 'administer contexts',
  4. 'schema' => 'context',
  5. 'menu' => array(
  6. 'menu prefix' => 'admin/structure',
  7. 'menu item' => 'context',
  8. 'menu title' => 'Context',
  9. 'menu description' => 'Associate menus, views, blocks, etc. with different contexts to structure your site.',
  10. ),
  11. 'title singular' => t('context'),
  12. 'title singular proper' => t('Context'),
  13. 'title plural' => t('contexts'),
  14. 'title plural proper' => t('Contexts'),
  15. 'form' => array(
  16. 'settings' => 'context_ui_form',
  17. 'submit' => 'context_ui_form_submit',
  18. ),
  19. 'handler' => array(
  20. 'class' => 'context_export_ui',
  21. 'parent' => 'ctools_export_ui',
  22. ),
  23. );