You are here

function ViewsArgumentValidatorTest::view_test_argument_validate_php in Views (for Drupal 7) 7.3

1 call to ViewsArgumentValidatorTest::view_test_argument_validate_php()
ViewsArgumentValidatorTest::testArgumentValidatePhp in tests/views_argument_validator.test

File

tests/views_argument_validator.test, line 60
Definition of ViewsArgumentValidatorTest.

Class

ViewsArgumentValidatorTest
Tests Views argument validators.

Code

function view_test_argument_validate_php($string) {
  $code = 'return $argument == \'' . $string . '\';';
  $view = new view();
  $view->name = 'view_argument_validate_php';
  $view->description = '';
  $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 */

  /* 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['exposed_form']['type'] = 'basic';
  $handler->display->display_options['pager']['type'] = 'full';
  $handler->display->display_options['style_plugin'] = 'default';
  $handler->display->display_options['row_plugin'] = 'fields';

  /* Argument: Global: Null */
  $handler->display->display_options['arguments']['null']['id'] = 'null';
  $handler->display->display_options['arguments']['null']['table'] = 'views';
  $handler->display->display_options['arguments']['null']['field'] = 'null';
  $handler->display->display_options['arguments']['null']['style_plugin'] = 'default_summary';
  $handler->display->display_options['arguments']['null']['default_argument_type'] = 'fixed';
  $handler->display->display_options['arguments']['null']['validate_type'] = 'php';
  $handler->display->display_options['arguments']['null']['validate_options']['code'] = $code;
  $handler->display->display_options['arguments']['null']['must_not_be'] = 0;
  return $view;
}