summaryrefslogtreecommitdiff
path: root/sites/all/modules/file_entity/plugins/entity/file.inc
blob: fd58231162d2764a83b9fc47bb596e64b47f3ae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
 * @file
 * Definition of the Panelizer file plugin.
 */

$plugin = array(
  'handler' => 'PanelizerEntityFile',
  'entity path' => 'file/%file',
  'uses page manager' => TRUE,
  'hooks' => array(
    'menu' => TRUE,
    'admin_paths' => TRUE,
    'permission' => TRUE,
    'panelizer_defaults' => TRUE,
    'default_page_manager_handlers' => TRUE,
    'form_alter' => TRUE,
    'page_alter' => TRUE,
    'views_data_alter' => TRUE,
    'views_plugins_alter' => TRUE,
  ),
);