Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ctools / ctools_custom_content / plugins / export_ui / ctools_custom_content.inc @ 7e72b748

1
<?php
2

    
3
/**
4
 * @file
5
 */
6

    
7
$plugin = array(
8
  'schema' => 'ctools_custom_content',
9
  'access' => 'administer custom content',
10

    
11
  'menu' => array(
12
    'menu item' => 'ctools-content',
13
    'menu title' => 'Custom content panes',
14
    'menu description' => 'Add, edit or delete custom content panes.',
15
  ),
16

    
17
  'title singular' => t('content pane'),
18
  'title singular proper' => t('Content pane'),
19
  'title plural' => t('content panes'),
20
  'title plural proper' => t('Content panes'),
21

    
22
  'handler' => 'ctools_custom_content_ui',
23
);