You are here

taxonomy_term.inc in Panelizer 7.2

Same filename and directory in other branches
  1. 7.3 plugins/entity/taxonomy_term.inc

File

plugins/entity/taxonomy_term.inc
View source
<?php

/**
 * @file
 * Definition of the taxonomy term plugin.
 */
if (module_exists('taxonomy')) {
  $plugin = array(
    'handler' => 'PanelizerEntityTaxonomyTerm',
    'entity path' => 'taxonomy/term/%taxonomy_term',
    'hooks' => array(
      'menu' => TRUE,
      'admin_paths' => TRUE,
      'permission' => TRUE,
      'panelizer_defaults' => TRUE,
      'default_page_manager_handlers' => TRUE,
      'form_alter' => TRUE,
      'views_data_alter' => TRUE,
    ),
  );
}