Projet

Général

Profil

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

root / drupal7 / sites / all / modules / panelizer / plugins / entity / comment.inc @ a2bb1a14

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

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