ctools_custom_content.inc 525 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. */
  5. $plugin = array(
  6. 'schema' => 'ctools_custom_content',
  7. 'access' => 'administer custom content',
  8. 'menu' => array(
  9. 'menu item' => 'ctools-content',
  10. 'menu title' => 'Custom content panes',
  11. 'menu description' => 'Add, edit or delete custom content panes.',
  12. ),
  13. 'title singular' => t('content pane'),
  14. 'title singular proper' => t('Content pane'),
  15. 'title plural' => t('content panes'),
  16. 'title plural proper' => t('Content panes'),
  17. 'handler' => 'ctools_custom_content_ui',
  18. );