Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ctools / stylizer / plugins / export_ui / stylizer.inc @ c304a780

1
<?php
2

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

    
7
$plugin = array(
8
  'schema' => 'stylizer',
9
  'access' => 'administer stylizer',
10

    
11
  'menu' => array(
12
    'menu item' => 'stylizer',
13
    'menu title' => 'Stylizer',
14
    'menu description' => 'Add, edit or delete stylizer styles.',
15
  ),
16

    
17
  'title singular' => t('style'),
18
  'title singular proper' => t('Style'),
19
  'title plural' => t('styles'),
20
  'title plural proper' => t('Styles'),
21

    
22
  'handler' => array(
23
    'class' => 'stylizer_ui',
24
  ),
25

    
26
  'strings' => array(
27
    'message' => array(
28
      'missing base type' => t('There are currently no style types available to add. You should enable a module that utilizes them, such as Panels.'),
29
    ),
30
  ),
31

    
32
  'use wizard' => TRUE,
33
  'form info' => array(
34
    'add order' => array(
35
      'admin' => t('Administrative settings'),
36
      'type' => t('Select style type'),
37
      'choose' => t('Select base style'),
38
    ),
39
    'order' => array(
40
      'admin' => t('Administrative settings'),
41
    ),
42
    'forms' => array(
43
      'choose' => array(
44
        'form id' => 'ctools_stylizer_edit_style_form_choose',
45
      ),
46
    ),
47
  ),
48
);