|
|
Drupal example source code file (comment.views_default.inc)
The comment.views_default.inc Drupal example source code<?php // $Id: comment.views_default.inc,v 1.7.6.7 2011/01/05 23:14:39 dereine Exp $ /** * @file * Contains default views on behalf of the comment module. */ /** * Implements hook_views_default_views(). */ function comment_views_default_views() { $view = new view; $view->name = 'comments_recent'; $view->description = 'Contains a block and a page to list recent comments; the block will automatically link to the page, which displays the comment body as well as a link to the node.'; $view->tag = 'default'; $view->base_table = 'comment'; $view->api_version = 2; $view->version = 7; $view->disabled = TRUE; /* Edit this to true to make a default view disabled initially */ /* Display: Defaults */ $handler = $view->new_display('default', 'Defaults', 'default'); $handler->display->display_options['title'] = 'Recent comments'; $handler->display->display_options['use_more'] = TRUE; $handler->display->display_options['access']['type'] = 'none'; $handler->display->display_options['cache']['type'] = 'none'; $handler->display->display_options['exposed_form']['type'] = 'basic'; $handler->display->display_options['pager']['type'] = 'some'; $handler->display->display_options['pager']['options']['items_per_page'] = 5; $handler->display->display_options['style_plugin'] = 'list'; $handler->display->display_options['row_plugin'] = 'fields'; /* Relationship: Comment: Node */ $handler->display->display_options['relationships']['nid']['id'] = 'nid'; $handler->display->display_options['relationships']['nid']['table'] = 'comment'; $handler->display->display_options['relationships']['nid']['field'] = 'nid'; /* Field: Comment: Title */ $handler->display->display_options['fields']['subject']['id'] = 'subject'; $handler->display->display_options['fields']['subject']['table'] = 'comment'; $handler->display->display_options['fields']['subject']['field'] = 'subject'; $handler->display->display_options['fields']['subject']['label'] = ''; $handler->display->display_options['fields']['subject']['link_to_comment'] = 1; /* Field: Comment: Post date */ $handler->display->display_options['fields']['timestamp']['id'] = 'timestamp'; $handler->display->display_options['fields']['timestamp']['table'] = 'comment'; $handler->display->display_options['fields']['timestamp']['field'] = 'changed'; $handler->display->display_options['fields']['timestamp']['label'] = ''; $handler->display->display_options['fields']['timestamp']['date_format'] = 'time ago'; /* Sort criterion: Comment: Post date */ $handler->display->display_options['sorts']['timestamp']['id'] = 'timestamp'; $handler->display->display_options['sorts']['timestamp']['table'] = 'comment'; $handler->display->display_options['sorts']['timestamp']['field'] = 'changed'; $handler->display->display_options['sorts']['timestamp']['order'] = 'DESC'; /* Filter: Node: 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']['relationship'] = 'nid'; $handler->display->display_options['filters']['status_extra']['group'] = 0; /* Display: Page */ $handler = $view->new_display('page', 'Page', 'page'); $handler->display->display_options['defaults']['items_per_page'] = FALSE; $handler->display->display_options['defaults']['style_plugin'] = FALSE; $handler->display->display_options['style_plugin'] = 'list'; $handler->display->display_options['defaults']['style_options'] = FALSE; $handler->display->display_options['defaults']['row_plugin'] = FALSE; $handler->display->display_options['row_plugin'] = 'fields'; $handler->display->display_options['row_options']['inline'] = array( 'title' => 'title', 'timestamp' => 'timestamp', ); $handler->display->display_options['row_options']['separator'] = ' '; $handler->display->display_options['defaults']['row_options'] = FALSE; $handler->display->display_options['defaults']['fields'] = FALSE; /* Field: Node: Title */ $handler->display->display_options['fields']['title']['id'] = 'title'; $handler->display->display_options['fields']['title']['table'] = 'node'; $handler->display->display_options['fields']['title']['field'] = 'title'; $handler->display->display_options['fields']['title']['relationship'] = 'nid'; $handler->display->display_options['fields']['title']['label'] = 'Reply to'; $handler->display->display_options['fields']['title']['link_to_node'] = 1; /* Field: Comment: Post date */ $handler->display->display_options['fields']['timestamp']['id'] = 'timestamp'; $handler->display->display_options['fields']['timestamp']['table'] = 'comment'; $handler->display->display_options['fields']['timestamp']['field'] = 'changed'; $handler->display->display_options['fields']['timestamp']['label'] = ''; $handler->display->display_options['fields']['timestamp']['date_format'] = 'time ago'; /* Field: Comment: Title */ $handler->display->display_options['fields']['subject']['id'] = 'subject'; $handler->display->display_options['fields']['subject']['table'] = 'comment'; $handler->display->display_options['fields']['subject']['field'] = 'subject'; $handler->display->display_options['fields']['subject']['label'] = ''; $handler->display->display_options['fields']['subject']['link_to_comment'] = 1; /* Field: Comment: Body */ $handler->display->display_options['fields']['comment']['id'] = 'comment'; $handler->display->display_options['fields']['comment']['table'] = 'comment'; $handler->display->display_options['fields']['comment']['field'] = 'comment'; $handler->display->display_options['fields']['comment']['label'] = ''; $handler->display->display_options['path'] = 'comments/recent'; /* Display: Block */ $handler = $view->new_display('block', 'Block', 'block'); $handler->display->display_options['block_description'] = 'Recent comments view'; $views[$view->name] = $view; $view = new view; $view->name = 'tracker'; $view->description = 'Shows all new activity on system.'; $view->tag = 'default'; $view->base_table = 'node'; $view->api_version = 2; $view->version = 7; $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( 'type' => array( 'id' => 'type', 'table' => 'node', 'field' => 'type', 'label' => 'Type', ), 'title' => array( 'id' => 'title', 'table' => 'node', 'field' => 'title', 'label' => 'Title', 'link_to_node' => TRUE, ), 'name' => array( 'id' => 'name', 'table' => 'users', 'field' => 'name', 'label' => 'Author', 'link_to_user' => TRUE, ), 'comment_count' => array( 'id' => 'comment_count', 'table' => 'node_comment_statistics', 'field' => 'comment_count', 'label' => 'Replies', 'set_precision' => FALSE, 'precision' => 0, 'decimal' => '.', 'separator' => ',', 'prefix' => '', 'suffix' => '', ), 'last_comment_timestamp' => array( 'id' => 'last_comment_timestamp', 'table' => 'node_comment_statistics', 'field' => 'last_comment_timestamp', 'label' => 'Last Post', 'date_format' => 'small', 'custom_date_format' => '', ), 'timestamp' => array( 'id' => 'timestamp', 'table' => 'history', 'field' => 'timestamp', 'label' => '', 'comments' => 1, 'relationship' => 'none', 'link_to_node' => 0, 'comment' => 1, ), 'new_comments' => array( 'id' => 'new_comments', 'table' => 'node', 'field' => 'new_comments', 'label' => '', 'set_precision' => FALSE, 'precision' => 0, 'decimal' => '.', 'separator' => ',', 'prefix' => '', 'suffix' => ' new', 'link_to_comment' => 1, 'no_empty' => 1, 'relationship' => 'none', ), )); $handler->override_option('sorts', array( 'last_comment_timestamp' => array( 'id' => 'last_comment_timestamp', 'table' => 'node_comment_statistics', 'field' => 'last_comment_timestamp', 'order' => 'ASC', 'granularity' => 'second', ), )); $handler->override_option('arguments', array( 'uid_touch' => array( 'id' => 'uid_touch', 'table' => 'node', 'field' => 'uid_touch', 'default_action' => 'ignore', 'style_plugin' => 'default_summary', 'style_options' => array( 'count' => TRUE, 'override' => FALSE, 'items_per_page' => 25, ), 'wildcard' => 'all', 'wildcard_substitution' => 'All', 'title' => 'Recent posts for %1', 'default_argument_type' => 'fixed', 'default_argument' => '', 'validate_type' => 'none', 'validate_fail' => 'not found', 'relationship' => 'none', 'default_argument_fixed' => '', 'default_argument_php' => '', 'validate_argument_node_type' => array( 'album' => 0, 'artist' => 0, 'book' => 0, 'page' => 0, 'story' => 0, 'track' => 0, ), 'validate_argument_php' => '', ), )); $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' => '', ), 'status' => array( 'id' => 'status', 'table' => 'comments', 'field' => 'status', 'operator' => '=', 'value' => 1, 'group' => 0, 'exposed' => FALSE, 'expose' => array( 'operator' => FALSE, 'label' => '', ), 'relationship' => 'none', ), ), )); $handler->override_option('access', array( 'type' => 'none', 'role' => array(), 'perm' => '', )); $handler->override_option('title', 'Recent posts'); $handler->override_option('items_per_page', '25'); $handler->override_option('use_pager', TRUE); $handler->override_option('style_plugin', 'table'); $handler->override_option('style_options', array( 'override' => 1, 'order' => 'desc', 'columns' => array( 'type' => 'type', 'title' => 'title', 'name' => 'name', 'comment_count' => 'comment_count', 'last_comment_timestamp' => 'last_comment_timestamp', 'timestamp' => 'title', 'new_comments' => 'comment_count', ), 'info' => array( 'type' => array( 'sortable' => 1, 'separator' => '', ), 'title' => array( 'sortable' => 1, 'separator' => ' ', ), 'name' => array( 'sortable' => 1, 'separator' => '', ), 'comment_count' => array( 'sortable' => 1, 'separator' => '<br />', ), 'last_comment_timestamp' => array( 'sortable' => 1, 'separator' => ' ', ), 'timestamp' => array( 'separator' => '', ), 'new_comments' => array( 'separator' => '', ), ), 'default' => 'last_comment_timestamp', )); $handler = $view->new_display('page', 'Page', 'page'); $handler->override_option('path', 'tracker'); $handler->override_option('menu', array( 'type' => 'normal', 'title' => 'Recent posts', 'weight' => 0, )); $handler->override_option('tab_options', array( 'type' => 'none', 'title' => NULL, 'weight' => NULL, )); $views[$view->name] = $view; return $views; } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal comment.views_default.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.