377 lines
11 KiB
PHP
377 lines
11 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* Contains default views on behalf of the node module.
|
|
*/
|
|
|
|
/**
|
|
* Implementation of hook_views_default_views().
|
|
*/
|
|
function node_views_default_views() {
|
|
$view = new view;
|
|
$view->name = 'frontpage';
|
|
$view->description = 'Emulates the default Drupal front page; you may set the default home page path to this view to make it your front page.';
|
|
$view->tag = 'default';
|
|
$view->base_table = 'node';
|
|
$view->api_version = 2;
|
|
$view->disabled = TRUE; /* Edit this to true to make a default view disabled initially */
|
|
$handler = $view->new_display('default', 'Defaults', 'default');
|
|
$handler->override_option('sorts', array(
|
|
'sticky' => array(
|
|
'id' => 'sticky',
|
|
'table' => 'node',
|
|
'field' => 'sticky',
|
|
'order' => 'DESC',
|
|
),
|
|
'created' => array(
|
|
'id' => 'created',
|
|
'table' => 'node',
|
|
'field' => 'created',
|
|
'order' => 'DESC',
|
|
'relationship' => 'none',
|
|
'granularity' => 'second',
|
|
),
|
|
));
|
|
$handler->override_option('filters', array(
|
|
'promote' => array(
|
|
'id' => 'promote',
|
|
'table' => 'node',
|
|
'field' => 'promote',
|
|
'operator' => '=',
|
|
'value' => '1',
|
|
'group' => 0,
|
|
'exposed' => FALSE,
|
|
'expose' => array(
|
|
'operator' => FALSE,
|
|
'label' => '',
|
|
),
|
|
),
|
|
'status' => array(
|
|
'id' => 'status',
|
|
'table' => 'node',
|
|
'field' => 'status',
|
|
'operator' => '=',
|
|
'value' => '1',
|
|
'group' => 0,
|
|
'exposed' => FALSE,
|
|
'expose' => array(
|
|
'operator' => FALSE,
|
|
'label' => '',
|
|
),
|
|
),
|
|
));
|
|
$handler->override_option('access', array(
|
|
'type' => 'perm',
|
|
'role' => array(),
|
|
'perm' => 'access content',
|
|
));
|
|
$handler->override_option('header_format', '1');
|
|
$handler->override_option('footer_format', '1');
|
|
$handler->override_option('empty_format', '1');
|
|
$handler->override_option('use_pager', '1');
|
|
$handler->override_option('row_plugin', 'node');
|
|
$handler->override_option('row_options', array(
|
|
'teaser' => 1,
|
|
'links' => 1,
|
|
));
|
|
$handler = $view->new_display('page', 'Page', 'page');
|
|
$handler->override_option('path', 'frontpage');
|
|
$handler->override_option('menu', array(
|
|
'type' => 'none',
|
|
'title' => '',
|
|
'weight' => 0,
|
|
));
|
|
$handler->override_option('tab_options', array(
|
|
'type' => 'none',
|
|
'title' => '',
|
|
'weight' => 0,
|
|
));
|
|
$handler = $view->new_display('feed', 'Feed', 'feed');
|
|
$handler->override_option('sitename_title', '1');
|
|
$handler->override_option('title', 'Front page feed');
|
|
$handler->override_option('style_options', array(
|
|
'mission_description' => 1,
|
|
'description' => '',
|
|
));
|
|
$handler->override_option('row_plugin', 'node_rss');
|
|
$handler->override_option('row_options', array(
|
|
'item_length' => 'default',
|
|
));
|
|
$handler->override_option('path', 'rss.xml');
|
|
$handler->override_option('menu', array(
|
|
'type' => 'none',
|
|
'title' => '',
|
|
'weight' => 0,
|
|
));
|
|
$handler->override_option('tab_options', array(
|
|
'type' => 'none',
|
|
'title' => '',
|
|
'weight' => 0,
|
|
));
|
|
$handler->override_option('displays', array(
|
|
'default' => 'default',
|
|
'page' => 'page',
|
|
));
|
|
$views[$view->name] = $view;
|
|
|
|
$view = new view;
|
|
$view->name = 'glossary';
|
|
$view->description = 'A list of all content, by letter.';
|
|
$view->tag = 'default';
|
|
$view->base_table = 'node';
|
|
$view->api_version = 2;
|
|
$view->disabled = TRUE; /* Edit this to true to make a default view disabled initially */
|
|
$handler = $view->new_display('default', 'Defaults', 'default');
|
|
$handler->override_option('fields', array(
|
|
'title' => array(
|
|
'label' => 'Title',
|
|
'link_to_node' => 1,
|
|
'exclude' => 0,
|
|
'id' => 'title',
|
|
'table' => 'node',
|
|
'field' => 'title',
|
|
'relationship' => 'none',
|
|
),
|
|
'name' => array(
|
|
'label' => 'Author',
|
|
'link_to_user' => 1,
|
|
'exclude' => 0,
|
|
'id' => 'name',
|
|
'table' => 'users',
|
|
'field' => 'name',
|
|
'relationship' => 'none',
|
|
),
|
|
'changed' => array(
|
|
'label' => 'Last update',
|
|
'date_format' => 'large',
|
|
'custom_date_format' => '',
|
|
'exclude' => 0,
|
|
'id' => 'changed',
|
|
'table' => 'node',
|
|
'field' => 'changed',
|
|
'relationship' => 'none',
|
|
),
|
|
));
|
|
$handler->override_option('arguments', array(
|
|
'title' => array(
|
|
'default_action' => 'default',
|
|
'style_plugin' => 'default_summary',
|
|
'style_options' => array(),
|
|
'wildcard' => 'all',
|
|
'wildcard_substitution' => 'All',
|
|
'title' => '',
|
|
'default_argument_type' => 'fixed',
|
|
'default_argument' => '',
|
|
'validate_type' => 'none',
|
|
'validate_fail' => 'not found',
|
|
'glossary' => 1,
|
|
'limit' => '1',
|
|
'case' => 'upper',
|
|
'path_case' => 'lower',
|
|
'transform_dash' => 0,
|
|
'id' => 'title',
|
|
'table' => 'node',
|
|
'field' => 'title',
|
|
'relationship' => 'none',
|
|
'default_argument_user' => 0,
|
|
'default_argument_fixed' => 'a',
|
|
'default_argument_php' => '',
|
|
'validate_argument_vocabulary' => array(),
|
|
'validate_argument_type' => 'tid',
|
|
'validate_argument_php' => '',
|
|
),
|
|
));
|
|
$handler->override_option('access', array(
|
|
'type' => 'perm',
|
|
'role' => array(),
|
|
'perm' => 'access content',
|
|
));
|
|
$handler->override_option('use_ajax', '1');
|
|
$handler->override_option('items_per_page', 36);
|
|
$handler->override_option('use_pager', '1');
|
|
$handler->override_option('style_plugin', 'table');
|
|
$handler->override_option('style_options', array(
|
|
'grouping' => '',
|
|
'override' => 1,
|
|
'sticky' => 0,
|
|
'order' => 'asc',
|
|
'columns' => array(
|
|
'title' => 'title',
|
|
'name' => 'name',
|
|
'changed' => 'changed',
|
|
),
|
|
'info' => array(
|
|
'title' => array(
|
|
'sortable' => 1,
|
|
'separator' => '',
|
|
),
|
|
'name' => array(
|
|
'sortable' => 1,
|
|
'separator' => '',
|
|
),
|
|
'changed' => array(
|
|
'sortable' => 1,
|
|
'separator' => '',
|
|
),
|
|
),
|
|
'default' => 'title',
|
|
));
|
|
$handler = $view->new_display('page', 'Page', 'page');
|
|
$handler->override_option('path', 'glossary');
|
|
$handler->override_option('menu', array(
|
|
'type' => 'normal',
|
|
'title' => 'Glossary',
|
|
'weight' => '0',
|
|
));
|
|
$handler->override_option('tab_options', array(
|
|
'type' => 'none',
|
|
'title' => '',
|
|
'weight' => 0,
|
|
));
|
|
$handler = $view->new_display('attachment', 'Attachment', 'attachment');
|
|
$handler->override_option('arguments', array(
|
|
'title' => array(
|
|
'default_action' => 'summary asc',
|
|
'style_plugin' => 'unformatted_summary',
|
|
'style_options' => array(
|
|
'count' => 1,
|
|
'override' => 0,
|
|
'items_per_page' => '25',
|
|
'inline' => 1,
|
|
'separator' => ' | ',
|
|
),
|
|
'wildcard' => 'all',
|
|
'wildcard_substitution' => 'All',
|
|
'title' => '',
|
|
'default_argument_type' => 'fixed',
|
|
'default_argument' => '',
|
|
'validate_type' => 'none',
|
|
'validate_fail' => 'not found',
|
|
'glossary' => 1,
|
|
'limit' => '1',
|
|
'case' => 'upper',
|
|
'path_case' => 'lower',
|
|
'transform_dash' => 0,
|
|
'id' => 'title',
|
|
'table' => 'node',
|
|
'field' => 'title',
|
|
'relationship' => 'none',
|
|
'default_argument_user' => 0,
|
|
'default_argument_fixed' => 'a',
|
|
'validate_argument_vocabulary' => array(),
|
|
'validate_argument_php' => '',
|
|
),
|
|
));
|
|
$handler->override_option('inherit_arguments', 0);
|
|
$handler->override_option('displays', array(
|
|
'default' => 'default',
|
|
'page' => 'page',
|
|
));
|
|
$views[$view->name] = $view;
|
|
|
|
$view = new view;
|
|
$view->name = 'archive';
|
|
$view->description = 'Display a list of months that link to content for that month.';
|
|
$view->tag = 'default';
|
|
$view->base_table = 'node';
|
|
$view->api_version = 2;
|
|
$view->disabled = TRUE; /* Edit this to true to make a default view disabled initially */
|
|
$handler = $view->new_display('default', 'Defaults', 'default');
|
|
$handler->override_option('title', 'Monthly archive');
|
|
$handler->override_option('sorts', array(
|
|
'created' => array(
|
|
'id' => 'created',
|
|
'table' => 'node',
|
|
'field' => 'created',
|
|
'order' => 'DESC',
|
|
'granularity' => 'second',
|
|
'relationship' => 'none',
|
|
),
|
|
));
|
|
$handler->override_option('arguments', array(
|
|
'created_year_month' => array(
|
|
'id' => 'created_year_month',
|
|
'table' => 'node',
|
|
'field' => 'created_year_month',
|
|
'default_action' => 'summary desc',
|
|
'style_plugin' => 'default_summary',
|
|
'style_options' => array(
|
|
'count' => 1,
|
|
'override' => 1,
|
|
'items_per_page' => '30',
|
|
),
|
|
'wildcard' => 'all',
|
|
'wildcard_substitution' => 'All',
|
|
'title' => '%1',
|
|
'relationship' => 'none',
|
|
'validate_type' => 'none',
|
|
'validate_fail' => 'not found',
|
|
'default_argument_type' => 'fixed',
|
|
),
|
|
));
|
|
$handler->override_option('filters', array(
|
|
'status' => array(
|
|
'id' => 'status',
|
|
'table' => 'node',
|
|
'field' => 'status',
|
|
'operator' => '=',
|
|
'value' => 1,
|
|
'group' => 0,
|
|
'exposed' => FALSE,
|
|
'expose' => array(
|
|
'operator' => FALSE,
|
|
'label' => '',
|
|
),
|
|
'relationship' => 'none',
|
|
),
|
|
));
|
|
$handler->override_option('access', array(
|
|
'type' => 'perm',
|
|
'role' => array(),
|
|
'perm' => 'access content',
|
|
));
|
|
$handler->override_option('use_pager', '1');
|
|
$handler->override_option('row_plugin', 'node');
|
|
$handler->override_option('row_options', array(
|
|
'teaser' => TRUE,
|
|
'links' => TRUE,
|
|
));
|
|
$handler = $view->new_display('page', 'Page', 'page');
|
|
$handler->override_option('path', 'archive');
|
|
$handler->override_option('menu', array(
|
|
'type' => 'none',
|
|
'title' => '',
|
|
'weight' => 0,
|
|
));
|
|
$handler->override_option('tab_options', array(
|
|
'type' => 'none',
|
|
'title' => '',
|
|
'weight' => 0,
|
|
));
|
|
$handler = $view->new_display('block', 'Block', 'block');
|
|
$handler->override_option('arguments', array(
|
|
'created_year_month' => array(
|
|
'id' => 'created_year_month',
|
|
'table' => 'node',
|
|
'field' => 'created_year_month',
|
|
'default_action' => 'summary asc',
|
|
'style_plugin' => 'default_summary',
|
|
'style_options' => array(
|
|
'count' => 1,
|
|
'override' => 0,
|
|
'items_per_page' => '30',
|
|
),
|
|
'wildcard' => 'all',
|
|
'wildcard_substitution' => 'All',
|
|
'title' => '%1',
|
|
'relationship' => 'none',
|
|
'validate_type' => 'none',
|
|
'validate_fail' => 'not found',
|
|
'default_argument_type' => 'fixed',
|
|
),
|
|
));
|
|
$handler->override_option('block_description', 'Archive list');
|
|
$views[$view->name] = $view;
|
|
|
|
return $views;
|
|
}
|