Projet

Général

Profil

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

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

1
<?php
2

    
3
$plugin = array(
4
  'schema' => 'stylizer',
5
  'access' => 'administer stylizer',
6

    
7
  'menu' => array(
8
    'menu item' => 'stylizer',
9
    'menu title' => 'Stylizer',
10
    'menu description' => 'Add, edit or delete stylizer styles.',
11
  ),
12

    
13
  'title singular' => t('style'),
14
  'title singular proper' => t('Style'),
15
  'title plural' => t('styles'),
16
  'title plural proper' => t('Styles'),
17

    
18
  'handler' => array(
19
    'class' => 'stylizer_ui',
20
  ),
21

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

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