summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/ctools_custom_content/plugins/export_ui/ctools_custom_content.inc
blob: 467dc5804af5c81dd3bd1dc44401fd60e1d53bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

$plugin = array(
  'schema' => 'ctools_custom_content',
  'access' => 'administer custom content',

  'menu' => array(
    'menu item' => 'ctools-content',
    'menu title' => 'Custom content panes',
    'menu description' => 'Add, edit or delete custom content panes.',
  ),

  'title singular' => t('content pane'),
  'title singular proper' => t('Content pane'),
  'title plural' => t('content panes'),
  'title plural proper' => t('Content panes'),

  'handler' => 'ctools_custom_content_ui',
);