EventAnEnrollOverride.php in Open Social 8.7
Same filename and directory in other branches
- 8.9 modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 8.3 modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 8.4 modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 8.5 modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 8.6 modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 8.8 modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 10.3.x modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 10.0.x modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 10.1.x modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
- 10.2.x modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.php
Namespace
Drupal\social_event_an_enrollFile
modules/social_features/social_event/modules/social_event_an_enroll/src/EventAnEnrollOverride.phpView source
<?php
namespace Drupal\social_event_an_enroll;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Config\ConfigFactoryOverrideInterface;
use Drupal\Core\Config\StorageInterface;
/**
* Class EventAnEnrollOverride.
*
* Override event form.
*
* @package Drupal\social_event_an_enroll
*/
class EventAnEnrollOverride implements ConfigFactoryOverrideInterface {
/**
* Returns config overrides.
*/
public function loadOverrides($names) {
$overrides = [];
$config_factory = \Drupal::service('config.factory');
// Add field_event_an_enroll to event form.
$config_name = 'core.entity_form_display.node.event.default';
if (in_array($config_name, $names)) {
$config = $config_factory
->getEditable($config_name);
$children = $config
->get('third_party_settings.field_group.group_enrollment.children');
$children[] = 'field_event_an_enroll';
$content = $config
->get('content');
$content['field_event_an_enroll'] = [
'weight' => 100,
'settings' => [
'display_label' => TRUE,
],
'third_party_settings' => [],
'type' => 'boolean_checkbox',
'region' => 'content',
];
$overrides[$config_name] = [
'third_party_settings' => [
'field_group' => [
'group_enrollment' => [
'children' => $children,
],
],
],
'content' => $content,
];
}
$config_name = 'views.view.event_manage_enrollments';
if (in_array($config_name, $names)) {
$config = $config_factory
->getEditable($config_name);
$preconfiguration = $config
->get('display.default.display_options.fields.views_bulk_operations_bulk_form.preconfiguration.social_event_managers_send_email_action');
$overrides[$config_name] = [
'display' => [
'default' => [
'display_options' => [
'fields' => [
'social_views_bulk_operations_bulk_form_enrollments_1' => [
'selected_actions' => [
'social_event_an_enroll_send_email_action' => 'social_event_an_enroll_send_email_action',
],
'preconfiguration' => [
'social_event_an_enroll_send_email_action' => $preconfiguration,
],
],
],
],
],
],
];
// Unset the regular Email.
$overrides[$config_name]['display']['default']['display_options']['fields']['social_views_bulk_operations_bulk_form_enrollments_1']['selected_actions']['social_event_managers_send_email_action'] = 0;
}
return $overrides;
}
/**
* {@inheritdoc}
*/
public function getCacheSuffix() {
return 'EventAnEnrollOverride';
}
/**
* {@inheritdoc}
*/
public function getCacheableMetadata($name) {
return new CacheableMetadata();
}
/**
* {@inheritdoc}
*/
public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) {
return NULL;
}
}
Classes
Name | Description |
---|---|
EventAnEnrollOverride | Class EventAnEnrollOverride. |