Projet

Général

Profil

Paste
Télécharger (513 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / panelizer / plugins / entity / taxonomy_term.inc @ 76df55b7

1
<?php
2
/**
3
 * @file
4
 * Definition of the taxonomy term plugin.
5
 */
6

    
7
if (module_exists('taxonomy')) {
8
  $plugin = array(
9
    'handler' => 'PanelizerEntityTaxonomyTerm',
10
    'entity path' => 'taxonomy/term/%taxonomy_term',
11
    'uses page manager' => TRUE,
12
    'hooks' => array(
13
      'menu' => TRUE,
14
      'admin_paths' => TRUE,
15
      'permission' => TRUE,
16
      'panelizer_defaults' => TRUE,
17
      'default_page_manager_handlers' => TRUE,
18
      'form_alter' => TRUE,
19
      'views_data_alter' => TRUE,
20
    ),
21
  );
22
}