public static function GdprFieldSettingsForm::buildFormFields in General Data Protection Regulation 8.2
Same name and namespace in other branches
- 8 modules/gdpr_fields/src/Form/GdprFieldSettingsForm.php \Drupal\gdpr_fields\Form\GdprFieldSettingsForm::buildFormFields()
- 3.0.x modules/gdpr_fields/src/Form/GdprFieldSettingsForm.php \Drupal\gdpr_fields\Form\GdprFieldSettingsForm::buildFormFields()
Builds the form fields for GDPR settings.
This is in a separate method so it can also be attached to the regular field settings page by hook.
Parameters
array $form: Form.
string $entity_type: Entity type.
string $bundle_name: Bundle.
string $field_name: Field.
Throws
\Drupal\Component\Plugin\Exception\PluginNotFoundException
See also
gdpr_fields_form_field_config_edit_form_submit
2 calls to GdprFieldSettingsForm::buildFormFields()
- GdprFieldSettingsForm::buildForm in modules/
gdpr_fields/ src/ Form/ GdprFieldSettingsForm.php - Form constructor.
- gdpr_fields_form_field_config_edit_form_alter in modules/
gdpr_fields/ gdpr_fields.module - Implements hook_form_FORM_ID_alter().
File
- modules/
gdpr_fields/ src/ Form/ GdprFieldSettingsForm.php, line 244
Class
- GdprFieldSettingsForm
- GDPR Field settings.
Namespace
Drupal\gdpr_fields\FormCode
public static function buildFormFields(array &$form, $entity_type = NULL, $bundle_name = NULL, $field_name = NULL) {
$entityTypeManager = Drupal::entityTypeManager();
$entityDefinition = $entityTypeManager
->getDefinition($entity_type);
if ($entityDefinition === NULL) {
return;
}
// Exclude uuid/bundle.
if ($entityDefinition
->getKey('uuid') === $field_name || $entityDefinition
->getKey('bundle') === $field_name) {
return;
}
$config = static::getConfig($entity_type, $bundle_name, $field_name);
/* @var \Drupal\Core\Entity\EntityFieldManagerInterface $fieldManager */
/* @var \Drupal\anonymizer\Anonymizer\AnonymizerFactory $anonymizerFactory */
$fieldManager = Drupal::service('entity_field.manager');
$anonymizerFactory = Drupal::service('anonymizer.anonymizer_factory');
$anonymizerDefinitions = $anonymizerFactory
->getDefinitions();
$fieldDefinition = $fieldManager
->getFieldDefinitions($entity_type, $bundle_name)[$field_name];
$form['gdpr_enabled'] = [
'#type' => 'checkbox',
'#title' => t('This is a GDPR field'),
'#default_value' => $config->enabled,
];
$form['gdpr_relationship'] = [
'#type' => 'value',
'#value' => GdprField::RELATIONSHIP_DISABLED,
];
$form['gdpr_sars_filename'] = [
'#type' => 'value',
'#value' => $config->sarsFilename,
];
if ($fieldDefinition
->getType() === 'entity_reference') {
$innerEntityType = $fieldDefinition
->getSetting('target_type');
$innerEntityDefinition = $entityTypeManager
->getDefinition($innerEntityType);
$form['gdpr_relationship'] = [
'#type' => 'select',
'#default_value' => $config->relationship,
'#options' => [
GdprField::RELATIONSHIP_DISABLED => new TranslatableMarkup('Do not follow this relationship.'),
GdprField::RELATIONSHIP_FOLLOW => new TranslatableMarkup('This %entity_type_label owns the referenced %target_entity_type_label (Relationship will be followed)', [
'%entity_type_label' => $entityDefinition
->getLabel(),
'%target_entity_type_label' => $innerEntityDefinition
->getLabel(),
]),
GdprField::RELATIONSHIP_OWNER => new TranslatableMarkup('This %entity_type_label is owned by the referenced %target_entity_type_label', [
'%entity_type_label' => $entityDefinition
->getLabel(),
'%target_entity_type_label' => $innerEntityDefinition
->getLabel(),
]),
],
'#title' => t('Relationship Handling'),
'#description' => new TranslatableMarkup('Owned entities are included in any task which contains the owner.', [
'%type' => $innerEntityDefinition
->getLabel(),
]),
'#states' => [
'visible' => [
':input[name="gdpr_enabled"]' => [
'checked' => TRUE,
],
],
],
];
}
$form['gdpr_rta'] = [
'#type' => 'select',
'#weight' => 10,
'#title' => t('Right to access'),
'#options' => GdprField::rtaOptions(),
'#default_value' => $config->rta,
'#states' => [
'visible' => [
':input[name="gdpr_enabled"]' => [
'checked' => TRUE,
],
],
],
];
$form['gdpr_rtf'] = [
'#weight' => 20,
'#type' => 'select',
'#title' => t('Right to be forgotten'),
'#options' => GdprField::rtfOptions(),
'#default_value' => $config->rtf,
'#states' => [
'visible' => [
':input[name="gdpr_enabled"]' => [
'checked' => TRUE,
],
],
],
];
$errorMessage = NULL;
if ($entityDefinition
->getKey('id') === $field_name) {
// If this is the entity's ID, treat the removal as remove the entire
// entity.
unset($form['gdpr_rtf']['#options']['anonymise']);
$form['gdpr_rtf']['#options']['remove'] = new TranslatableMarkup('Delete entire entity');
// Define target filename for this bundle.
// @todo: Move to a form alter in gdpr_tasks.
// @todo: Add <inherit> option to inherit owned entity filename.
$form['gdpr_sars_filename'] = [
'#type' => 'textfield',
'#title' => t('Right to access filename'),
'#description' => t('Specify the filename for the owned entity to go in. Use %inherit to keep the related entity in the same file.', []),
// Default to the entity type.
'#default_value' => $config->sarsFilename,
'#field_suffix' => '.csv',
'#size' => 20,
// Between RTA and RTF.
'#weight' => 15,
'#required' => TRUE,
'#states' => [
'visible' => [
':input[name="gdpr_enabled"]' => [
'checked' => TRUE,
],
],
],
];
}
elseif (!$config
->propertyCanBeRemoved($fieldDefinition, $errorMessage)) {
unset($form['gdpr_rtf']['#options']['remove']);
$form['gdpr_rtf_disabled'] = [
'#type' => 'item',
'#markup' => new TranslatableMarkup('This field cannot be removed, only anonymised.'),
'#description' => $errorMessage,
];
}
// Force removal to 'no' for computed properties.
if ($fieldDefinition
->isComputed()) {
$form['gdpr_rtf']['#default_value'] = 'no';
$form['gdpr_rtf']['#disabled'] = TRUE;
$form['gdpr_rtf']['#description'] = t('*This is a computed field and cannot be removed.');
}
$sanitizerOptions = array_map(static function ($anonymizer) {
return $anonymizer['label'];
}, $anonymizerDefinitions);
$form['gdpr_anonymizer'] = [
'#weight' => 30,
'#type' => 'select',
'#title' => t('Anonymizer to use'),
'#options' => $sanitizerOptions,
'#default_value' => $config->anonymizer,
'#states' => [
'visible' => [
':input[name="gdpr_enabled"]' => [
'checked' => TRUE,
],
':input[name="gdpr_rtf"]' => [
'value' => 'anonymize',
],
],
'required' => [
':input[name="gdpr_enabled"]' => [
'checked' => TRUE,
],
':input[name="gdpr_rtf"]' => [
'value' => 'anonymize',
],
],
],
];
$form['gdpr_notes'] = [
'#weight' => 40,
'#type' => 'textarea',
'#title' => 'Notes',
'#default_value' => $config->notes,
'#states' => [
'visible' => [
':input[name="gdpr_enabled"]' => [
'checked' => TRUE,
],
],
],
];
}