Projet

Général

Profil

Paste
Télécharger (1 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / panels / panels_mini / plugins / export_ui / panels_mini.inc @ 27370441

1
<?php
2

    
3
$plugin = array(
4
  'schema' => 'panels_mini',
5
  'access' => 'administer mini panels',
6
  'create access' => 'create mini panels',
7

    
8
  'menu' => array(
9
    'menu item' => 'mini-panels',
10
    'menu title' => 'Mini panels',
11
    'menu description' => 'Add, edit or delete mini panels, which can be used as blocks or content panes in other panels.',
12
  ),
13

    
14
  'title singular' => t('mini panel'),
15
  'title singular proper' => t('Mini panel'),
16
  'title plural' => t('mini panels'),
17
  'title plural proper' => t('Mini panels'),
18

    
19
  'handler' => array(
20
    'class' => 'panels_mini_ui',
21
    'parent' => 'ctools_export_ui',
22
  ),
23

    
24
  'use wizard' => TRUE,
25
  'form info' => array(
26
    'order' => array(
27
      'basic' => t('Settings'),
28
      'context' => t('Context'),
29
      'layout' => t('Layout'),
30
      'content' => t('Content'),
31
    ),
32
    // We have to add this form specially because it's invisible.
33
    'forms' => array(
34
      'move' => array(
35
        'form id' => 'ctools_export_ui_edit_item_wizard_form',
36
      ),
37
    ),
38
  ),
39

    
40
);
41