function views_test_data_install

Implements hook_install().

File

drupal/core/modules/views/tests/views_test_data/views_test_data.install, line 18
Install, update, and uninstall functions for the Views Test module.

Code

function views_test_data_install() {

  // Add the marquee tag to possible html elements to test the field handler.
  $values = array(
    'div' => 'DIV',
    'span' => 'SPAN',
    'h1' => 'H1',
    'h2' => 'H2',
    'h3' => 'H3',
    'h4' => 'H4',
    'h5' => 'H5',
    'h6' => 'H6',
    'p' => 'P',
    'strong' => 'STRONG',
    'em' => 'EM',
    'marquee' => 'MARQUEE',
  );
  config('views.settings')
    ->set('field_rewrite_elements', $values)
    ->save();
}