| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: panels_mini.inc,v 1.1.2.2 2010/08/21 20:46:36 merlinofchaos Exp $ 3 4 $plugin = array( 5 'schema' => 'panels_mini', 6 'access' => 'administer mini panels', 7 'create access' => 'create mini panels', 8 9 'menu' => array( 10 'menu item' => 'mini-panels', 11 'menu title' => 'Mini panels', 12 'menu description' => 'Add, edit or delete mini panels, which can be used as blocks or content panes in other panels.', 13 ), 14 15 'title singular' => t('mini panel'), 16 'title singular proper' => t('Mini panel'), 17 'title plural' => t('mini panels'), 18 'title plural proper' => t('Mini panels'), 19 20 'handler' => array( 21 'class' => 'panels_mini_ui', 22 'parent' => 'ctools_export_ui', 23 ), 24 25 'use wizard' => TRUE, 26 'form info' => array( 27 'order' => array( 28 'basic' => t('Settings'), 29 'context' => t('Context'), 30 'layout' => t('Layout'), 31 'content' => t('Content'), 32 ), 33 // We have to add this form specially because it's invisible. 34 'forms' => array( 35 'move' => array( 36 'form id' => 'ctools_export_ui_edit_item_wizard_form', 37 ), 38 ), 39 ), 40 41 ); 42
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |