Projet

Général

Profil

Paste
Télécharger (508 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / ctools / ctools_custom_content / plugins / export_ui / ctools_custom_content.inc @ 651307cd

1
<?php
2

    
3
$plugin = array(
4
  'schema' => 'ctools_custom_content',
5
  'access' => 'administer custom content',
6

    
7
  'menu' => array(
8
    'menu item' => 'ctools-content',
9
    'menu title' => 'Custom content panes',
10
    'menu description' => 'Add, edit or delete custom content panes.',
11
  ),
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

    
18
  'handler' => 'ctools_custom_content_ui',
19
);
20