root / drupal7 / sites / all / modules / file_entity / plugins / entity / file.inc @ 2b3c8cc1
1 |
<?php |
---|---|
2 |
/** |
3 |
* @file |
4 |
* Definition of the Panelizer file plugin. |
5 |
*/ |
6 |
|
7 |
$plugin = array( |
8 |
'handler' => 'PanelizerEntityFile', |
9 |
'entity path' => 'file/%file', |
10 |
'uses page manager' => TRUE, |
11 |
'hooks' => array( |
12 |
'menu' => TRUE, |
13 |
'admin_paths' => TRUE, |
14 |
'permission' => TRUE, |
15 |
'panelizer_defaults' => TRUE, |
16 |
'default_page_manager_handlers' => TRUE, |
17 |
'form_alter' => TRUE, |
18 |
'page_alter' => TRUE, |
19 |
'views_data_alter' => TRUE, |
20 |
'views_plugins_alter' => TRUE, |
21 |
), |
22 |
); |