You are here

page_title_views_test.views_default.inc in Page Title 6.2

Provide a view for testing - it simply tests the core "page" view and the User ID Argument with a placeholder and token.

Implementation of hook_views_default_views().

File

tests/page_title_views_test.views_default.inc
View source
<?php

/**
* @file
* Provide a view for testing - it simply tests the core "page" view and the User ID Argument with a placeholder and token.

/**
* Implementation of hook_views_default_views().
*/
function page_title_views_test_views_default_views() {
  $view = new view();
  $view->name = 'test_view';
  $view->description = 'Test View';
  $view->tag = '';
  $view->view_php = '';
  $view->base_table = 'node';
  $view->is_cacheable = FALSE;
  $view->api_version = 2;
  $view->disabled = FALSE;

  /* Edit this to true to make a default view disabled initially */
  $handler = $view
    ->new_display('default', 'Defaults', 'default');
  $handler
    ->override_option('arguments', array(
    'uid' => array(
      'id' => 'uid',
      'table' => 'users',
      'field' => 'uid',
    ),
  ));
  $handler
    ->override_option('access', array(
    'type' => 'none',
  ));
  $handler
    ->override_option('cache', array(
    'type' => 'none',
  ));
  $handler
    ->override_option('row_plugin', 'node');
  $handler = $view
    ->new_display('page_with_page_title', 'Page (with Page Title)', 'page_with_page_title_1');
  $handler
    ->override_option('arguments', array(
    'uid' => array(
      'default_action' => 'ignore',
      'style_plugin' => 'default_summary',
      'style_options' => array(),
      'wildcard' => 'all',
      'wildcard_substitution' => 'All',
      'title' => '',
      'breadcrumb' => '',
      'default_argument_type' => 'fixed',
      'default_argument' => '',
      'validate_type' => 'none',
      'validate_fail' => 'not found',
      'break_phrase' => 0,
      'not' => 0,
      'id' => 'uid',
      'table' => 'users',
      'field' => 'uid',
      'validate_user_argument_type' => 'uid',
      'validate_user_roles' => array(
        '2' => 0,
      ),
      'override' => array(
        'button' => 'Use default',
      ),
      'relationship' => 'none',
      'page_title' => 'User %1 [site-name]',
      'default_options_div_prefix' => '',
      'default_argument_fixed' => '',
      'default_argument_user' => 0,
      'default_argument_php' => '',
      'validate_argument_node_type' => array(
        'page' => 0,
        'story' => 0,
      ),
      'validate_argument_node_access' => 0,
      'validate_argument_nid_type' => 'nid',
      'validate_argument_vocabulary' => array(),
      'validate_argument_type' => 'tid',
      'validate_argument_transform' => 0,
      'validate_user_restrict_roles' => 0,
      'validate_argument_php' => '',
      'page_title_pattern' => 'User %1 [site-name]',
    ),
  ));
  $handler
    ->override_option('path', 'test');
  $handler
    ->override_option('menu', array(
    'type' => 'none',
    'title' => '',
    'description' => '',
    'weight' => 0,
    'name' => 'navigation',
  ));
  $handler
    ->override_option('tab_options', array(
    'type' => 'none',
    'title' => '',
    'description' => '',
    'weight' => 0,
    'name' => 'navigation',
  ));
  $handler
    ->override_option('page_title_pattern', 'test [site-name]');
  $views[$view->name] = $view;
  return $views;
}

Functions

Namesort descending Description
page_title_views_test_views_default_views @file Provide a view for testing - it simply tests the core "page" view and the User ID Argument with a placeholder and token.