drupal-7.contact.database.php

Same filename and directory in other branches
  1. 9 core/modules/contact/tests/drupal-7.contact.database.php
  2. 8.9.x core/modules/contact/tests/drupal-7.contact.database.php
  3. 10 core/modules/contact/tests/drupal-7.contact.database.php

File

core/modules/contact/tests/drupal-7.contact.database.php

View source
<?php


/**
 * @file
 * Database additions for Drupal\contact\Tests\ContactUpgradePathTest.
 *
 * This dump only contains data for the contact module. The
 * drupal-7.filled.bare.php file is imported before this dump, so the two form
 * the database structure expected in tests altogether.
 */
$connection = \Drupal::database();
// Update the default category to that it is not selected.
$connection->update('contact')
    ->fields([
    'selected' => '0',
])
    ->condition('cid', '1')
    ->execute();
// Add a custom contact category.
$connection->insert('contact')
    ->fields([
    'category',
    'recipients',
    'reply',
    'weight',
    'selected',
])
    ->values([
    'category' => 'Upgrade test',
    'recipients' => 'test1@example.com,test2@example.com',
    'reply' => 'Test reply',
    'weight' => 1,
    'selected' => 1,
])
    ->execute();

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.