function viewsHandlerArgumentCommentUserUidTest::view_comment_user_uid

2 calls to viewsHandlerArgumentCommentUserUidTest::view_comment_user_uid()
viewsHandlerArgumentCommentUserUidTest::testCommentUserUidTest in tests/comment/views_handler_argument_comment_user_uid.test
viewsHandlerFilterCommentUserUidTest::view_comment_user_uid in tests/comment/views_handler_filter_comment_user_uid.test
Override the view from the argument test case to remove the argument and add filter with the uid as the value.
1 method overrides viewsHandlerArgumentCommentUserUidTest::view_comment_user_uid()
viewsHandlerFilterCommentUserUidTest::view_comment_user_uid in tests/comment/views_handler_filter_comment_user_uid.test
Override the view from the argument test case to remove the argument and add filter with the uid as the value.

File

tests/comment/views_handler_argument_comment_user_uid.test, line 83

Class

viewsHandlerArgumentCommentUserUidTest
Tests the argument_comment_user_uid handler.

Code

public function view_comment_user_uid() {
    $view = new view();
    $view->name = 'test_comment_user_uid';
    $view->description = '';
    $view->tag = 'default';
    $view->base_table = 'node';
    $view->human_name = 'test_comment_user_uid';
    $view->core = 7;
    $view->api_version = '3.0';
    $view->disabled = FALSE;
    
    /* 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'] = 'perm';
    $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';
    
    /* Field: Content: nid */
    $handler->display->display_options['fields']['nid']['id'] = 'nid';
    $handler->display->display_options['fields']['nid']['table'] = 'node';
    $handler->display->display_options['fields']['nid']['field'] = 'nid';
    
    /* Contextual filter: Content: User posted or commented */
    $handler->display->display_options['arguments']['uid_touch']['id'] = 'uid_touch';
    $handler->display->display_options['arguments']['uid_touch']['table'] = 'node';
    $handler->display->display_options['arguments']['uid_touch']['field'] = 'uid_touch';
    $handler->display->display_options['arguments']['uid_touch']['default_argument_type'] = 'fixed';
    $handler->display->display_options['arguments']['uid_touch']['default_argument_skip_url'] = 0;
    $handler->display->display_options['arguments']['uid_touch']['summary']['number_of_records'] = '0';
    $handler->display->display_options['arguments']['uid_touch']['summary']['format'] = 'default_summary';
    $handler->display->display_options['arguments']['uid_touch']['summary_options']['items_per_page'] = '25';
    return $view;
}