109 lines
5.6 KiB
PHP
109 lines
5.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Bulk export of views_default objects generated by Bulk export module.
|
|
*/
|
|
|
|
/**
|
|
* Implementation of hook_views_default_views()
|
|
*/
|
|
function taxonomy_views_default_views() {
|
|
$views = array();
|
|
|
|
$view = new Drupal\views\View();
|
|
$view->name = 'taxonomy_term';
|
|
$view->description = 'A view to emulate Drupal core\'s handling of taxonomy/term.';
|
|
$view->tag = 'default';
|
|
$view->base_table = 'node';
|
|
$view->human_name = 'Taxonomy term';
|
|
$view->core = 7;
|
|
$view->api_version = '3.0';
|
|
$view->disabled = TRUE; /* Edit this to true to make a default view disabled initially */
|
|
|
|
/* Display: Master */
|
|
$handler = $view->new_display('default', 'Master', 'default');
|
|
$handler->display->display_options['access']['type'] = 'none';
|
|
$handler->display->display_options['cache']['type'] = 'none';
|
|
$handler->display->display_options['query']['type'] = 'views_query';
|
|
$handler->display->display_options['query']['options']['query_comment'] = FALSE;
|
|
$handler->display->display_options['exposed_form']['type'] = 'basic';
|
|
$handler->display->display_options['pager']['type'] = 'full';
|
|
$handler->display->display_options['style_plugin'] = 'default';
|
|
$handler->display->display_options['row_plugin'] = 'node';
|
|
/* Sort criterion: Content: Sticky */
|
|
$handler->display->display_options['sorts']['sticky']['id'] = 'sticky';
|
|
$handler->display->display_options['sorts']['sticky']['table'] = 'node';
|
|
$handler->display->display_options['sorts']['sticky']['field'] = 'sticky';
|
|
$handler->display->display_options['sorts']['sticky']['order'] = 'DESC';
|
|
/* Sort criterion: Content: Post date */
|
|
$handler->display->display_options['sorts']['created']['id'] = 'created';
|
|
$handler->display->display_options['sorts']['created']['table'] = 'node';
|
|
$handler->display->display_options['sorts']['created']['field'] = 'created';
|
|
$handler->display->display_options['sorts']['created']['order'] = 'DESC';
|
|
/* Contextual filter: Content: Has taxonomy term ID (with depth) */
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['id'] = 'term_node_tid_depth';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['table'] = 'node';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['field'] = 'term_node_tid_depth';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['default_action'] = 'not found';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['exception']['title_enable'] = 1;
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['title_enable'] = 1;
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['title'] = '%1';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['default_argument_type'] = 'fixed';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['summary']['format'] = 'default_summary';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['specify_validation'] = 1;
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['validate']['type'] = 'taxonomy_term';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['depth'] = '0';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth']['break_phrase'] = 1;
|
|
/* Contextual filter: Content: Has taxonomy term ID depth modifier */
|
|
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['id'] = 'term_node_tid_depth_modifier';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['table'] = 'node';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['field'] = 'term_node_tid_depth_modifier';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['exception']['title_enable'] = 1;
|
|
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['default_argument_type'] = 'fixed';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['summary']['format'] = 'default_summary';
|
|
$handler->display->display_options['arguments']['term_node_tid_depth_modifier']['specify_validation'] = 1;
|
|
/* Filter criterion: Content: Published or admin */
|
|
$handler->display->display_options['filters']['status_extra']['id'] = 'status_extra';
|
|
$handler->display->display_options['filters']['status_extra']['table'] = 'node';
|
|
$handler->display->display_options['filters']['status_extra']['field'] = 'status_extra';
|
|
$handler->display->display_options['filters']['status_extra']['group'] = 0;
|
|
$handler->display->display_options['filters']['status_extra']['expose']['operator'] = FALSE;
|
|
|
|
/* Display: Page */
|
|
$handler = $view->new_display('page', 'Page', 'page');
|
|
$handler->display->display_options['path'] = 'taxonomy/term/%';
|
|
|
|
/* Display: Feed */
|
|
$handler = $view->new_display('feed', 'Feed', 'feed');
|
|
$handler->display->display_options['pager']['type'] = 'full';
|
|
$handler->display->display_options['pager']['options']['items_per_page'] = 15;
|
|
$handler->display->display_options['style_plugin'] = 'rss';
|
|
$handler->display->display_options['row_plugin'] = 'node_rss';
|
|
$handler->display->display_options['path'] = 'taxonomy/term/%/%/feed';
|
|
$handler->display->display_options['displays'] = array(
|
|
'page' => 'page',
|
|
'default' => 0,
|
|
);
|
|
$translatables['taxonomy_term'] = array(
|
|
t('Master'),
|
|
t('more'),
|
|
t('Apply'),
|
|
t('Reset'),
|
|
t('Sort by'),
|
|
t('Asc'),
|
|
t('Desc'),
|
|
t('Items per page'),
|
|
t('- All -'),
|
|
t('Offset'),
|
|
t('All'),
|
|
t('%1'),
|
|
t('Page'),
|
|
t('Feed'),
|
|
);
|
|
|
|
$views['taxonomy_term'] = $view;
|
|
|
|
return $views;
|
|
}
|