taxonomy_term.inc in Panelizer 7.2
Same filename and directory in other branches
File
plugins/entity/taxonomy_term.incView 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,
),
);
}