Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit f07acae9 authored by Sergio Elvira Perez's avatar Sergio Elvira Perez
Browse files

OEL-1133: Submodule created to add contact form tests and hooks.

parent 6cd594cf
No related branches found
No related tags found
1 merge request!73OEL-1133: Add Contact forms theming
# OpenEuropa Whitelabel contact forms
This module offers the ability to add contact forms.
## Requirements
To enable this you will have to provide dependent modules in your projects composer.json
```
composer require openeuropa/oe_contact_forms
```
name: OpenEuropa Whitelabel Theme contact forms
type: module
description: OpenEuropa Whitelabel contact forms tools.
package: OpenEuropa Whitelabel Theme
core_version_requirement: ^9.2
dependencies:
- oe_contact_forms:oe_contact_forms
<?php
/**
* @file
* The OE Whitelabel contact forms module.
*/
declare(strict_types = 1);
use Drupal\contact\Entity\ContactForm;
use Drupal\Core\Form\FormStateInterface;
use Drupal\contact\MessageInterface;
use Drupal\Core\Field\FieldConfigInterface;
/**
* Implements hook_preprocess_HOOK() for status messages.
*/
function oe_whitelabel_contact_forms_preprocess_status_messages(&$variables) {
if (!isset($variables['message_list']['status'])) {
return;
}
foreach ($variables['message_list']['status'] as $key => $value) {
// Target contact_messages which are being rendered in the status message.
if (
!is_array($value) ||
!isset($value['#contact_message']) ||
!$value['#contact_message'] instanceof MessageInterface
) {
continue;
}
/** @var \Drupal\contact\MessageInterface $contact_message */
$contact_message = $value['#contact_message'];
/** @var \Drupal\contact\Entity\ContactForm $contact_form */
$contact_form = ContactForm::load($contact_message->bundle());
$is_corporate_form = (boolean) $contact_form->getThirdPartySetting('oe_contact_forms', 'is_corporate_form', FALSE);
// We work only with corporate forms from here.
if (!$is_corporate_form) {
continue;
}
$optional_fields = $contact_form->getThirdPartySetting('oe_contact_forms', 'optional_fields', []);
$items = [];
$fields = [
'name',
'mail',
'subject',
'message',
'oe_topic',
];
// Add new fields if exists.
foreach ($contact_message->getFields() as $contact_form_field) {
if (!$contact_form_field->getFieldDefinition() instanceof FieldConfigInterface){
continue;
}
$fields[] = $contact_form_field->getName();
}
if (in_array('oe_country_residence', $optional_fields)) {
$fields[] = 'oe_country_residence';
}
if (in_array('oe_telephone', $optional_fields)) {
$fields[] = 'oe_telephone';
}
// Build the label body pairs for the field_list pattern.
foreach ($fields as $field_name) {
/** @var \Drupal\Core\Field\FieldItemList $field */
$field = $contact_message->get($field_name);
if ($field->isEmpty() || !$field->access()) {
continue;
}
$value = 'value';
if ($field->getFieldDefinition()->getType() == 'skos_concept_entity_reference') {
$value = 'target_id';
}
$items[] = [
'term' => $field->getFieldDefinition()->getLabel(),
'definition' => $field->first()->getValue()[$value],
];
}
$variables['message_list']['status'][$key] = [
'#type' => 'pattern',
'#id' => 'description_list',
'#orientation' => 'horizontal',
'#fields' => [
'items' => $items,
],
];
}
}
/**
* Implements hook_form_FORM_ID_alter().
*/
function oe_whitelabel_contact_forms_form_contact_message_form_alter(&$form, FormStateInterface $form_state, $form_id) {
// Add 'hr' line on top of the checkboxes.
$form['line'] = [
'#type' => 'markup',
'#markup' => '<hr class="mt-5 mb-5"/>',
'#weight' => 6,
];
}
......@@ -17,96 +17,3 @@ use Drupal\contact\MessageInterface;
function oe_whitelabel_helper_locale_translation_projects_alter(&$projects) {
$projects['oe_whitelabel_helper']['info']['interface translation server pattern'] = drupal_get_path('module', 'oe_whitelabel_helper') . '/translations/%project-%language.po';
}
/**
* Implements hook_preprocess_HOOK() for status messages.
*/
function oe_whitelabel_helper_preprocess_status_messages(&$variables) {
if (!isset($variables['message_list']['status'])) {
return;
}
foreach ($variables['message_list']['status'] as $key => $value) {
// Target contact_messages which are being rendered in the status message.
if (
!is_array($value) ||
!isset($value['#contact_message']) ||
!$value['#contact_message'] instanceof MessageInterface
) {
continue;
}
/** @var \Drupal\contact\MessageInterface $contact_message */
$contact_message = $value['#contact_message'];
/** @var \Drupal\contact\Entity\ContactForm $contact_form */
$contact_form = ContactForm::load($contact_message->bundle());
$is_corporate_form = (boolean) $contact_form->getThirdPartySetting('oe_contact_forms', 'is_corporate_form', FALSE);
// We work only with corporate forms from here.
if (!$is_corporate_form) {
continue;
}
$optional_fields = $contact_form->getThirdPartySetting('oe_contact_forms', 'optional_fields', []);
$items = [];
$fields = [
'name',
'mail',
'subject',
'message',
'oe_topic',
];
// Add new fields if exists.
foreach ($contact_message->getFields() as $contact_form_field) {
if (strpos($contact_form_field->getName(), 'field_') === 0) {
$fields[] = $contact_form_field->getName();
}
}
if (in_array('oe_country_residence', $optional_fields)) {
$fields[] = 'oe_country_residence';
}
if (in_array('oe_telephone', $optional_fields)) {
$fields[] = 'oe_telephone';
}
// Build the label body pairs for the field_list pattern.
foreach ($fields as $field_name) {
/** @var \Drupal\Core\Field\FieldItemList $field */
$field = $contact_message->get($field_name);
if ($field->isEmpty() || !$field->access()) {
continue;
}
$value = 'value';
if ($field->getFieldDefinition()->getType() == 'skos_concept_entity_reference') {
$value = 'target_id';
}
$items[] = [
'term' => $field->getFieldDefinition()->getLabel(),
'definition' => $field->first()->getValue()[$value],
];
}
$variables['message_list']['status'][$key] = [
'#type' => 'pattern',
'#id' => 'description_list',
'#orientation' => 'horizontal',
'#fields' => [
'items' => $items,
],
];
}
}
/**
* Implements hook_form_FORM_ID_alter().
*/
function oe_whitelabel_helper_form_contact_message_form_alter(&$form, FormStateInterface $form_state, $form_id) {
// Add 'hr' line on top of the checkboxes.
$form['line'] = [
'#type' => 'markup',
'#markup' => '<hr class="mt-5 mb-5"/>',
'#weight' => 6,
];
}
......@@ -17,6 +17,7 @@ drupal:
# Prepare the instance.
- "./vendor/bin/drush en oe_whitelabel_helper -y"
- "./vendor/bin/drush en oe_whitelabel_search -y"
- "./vendor/bin/drush en oe_whitelabel_contact_forms -y"
- "./vendor/bin/drush en field_ui -y"
- "./vendor/bin/drush en toolbar -y"
- "./vendor/bin/drush theme:enable oe_whitelabel -y"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment