ctools_custom_content.inc 508 B

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