You are here

contact.post_update.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/contact/contact.post_update.php

Post update functions for Contact.

File

core/modules/contact/contact.post_update.php
View source
<?php

/**
 * @file
 * Post update functions for Contact.
 */
use Drupal\contact\Entity\ContactForm;

/**
 * Initialize 'message' and 'redirect' field values to 'contact_form' entities.
 */
function contact_post_update_add_message_redirect_field_to_contact_form() {

  /** @var \Drupal\contact\ContactFormInterface $contact */
  foreach (ContactForm::loadMultiple() as $contact) {
    $contact
      ->setMessage('Your message has been sent.')
      ->setRedirectPath('')
      ->save();
  }
}

Functions

Namesort descending Description
contact_post_update_add_message_redirect_field_to_contact_form Initialize 'message' and 'redirect' field values to 'contact_form' entities.