You are here

public function FieldEncryptSettingsForm::buildForm in Field Encryption 8.2

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfigFormBase::buildForm

File

src/Form/FieldEncryptSettingsForm.php, line 59

Class

FieldEncryptSettingsForm
Form builder for the field_encrypt settings admin page.

Namespace

Drupal\field_encrypt\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form = parent::buildForm($form, $form_state);
  $config = $this
    ->config('field_encrypt.settings');
  $default_properties = $config
    ->get('default_properties');
  $form['default_properties'] = array(
    '#type' => 'details',
    '#title' => $this
      ->t('Default properties'),
    '#description' => $this
      ->t('Select which field properties will be checked by default on the field encryption settings form, per field type. Note that this does not change existing field settings, but merely sets sensible defaults.'),
    '#tree' => TRUE,
    '#open' => TRUE,
  );

  // Gather valid field types.
  foreach ($this->fieldTypePluginManager
    ->getGroupedDefinitions($this->fieldTypePluginManager
    ->getUiDefinitions()) as $category => $field_types) {
    $form['default_properties'][$category] = array(
      '#type' => 'details',
      '#title' => $category,
      '#open' => TRUE,
    );
    foreach ($field_types as $name => $field_type) {

      // Special handling for preconfigured definitions.
      // @see \Drupal\Core\Field\FieldTypePluginManager::getUiDefinitions()
      $type = strpos($name, 'field_ui:') === 0 ? $field_type['id'] : $name;
      $field_definition = BaseFieldDefinition::create($type);
      $definitions = $field_definition
        ->getPropertyDefinitions();
      $properties = [];
      foreach ($definitions as $property => $definition) {
        $properties[$property] = $property . ' (' . $definition
          ->getLabel() . ' - ' . $definition
          ->getDataType() . ')';
      }
      $form['default_properties'][$category][$name] = [
        '#type' => 'checkboxes',
        '#title' => $this
          ->t('@field_type properties', array(
          '@field_type' => $field_type['label'],
        )),
        '#description' => t('Specify the default properties to encrypt for this field type.'),
        '#options' => $properties,
        '#default_value' => isset($default_properties[$name]) ? $default_properties[$name] : [],
      ];
    }
    $form['batch_update'] = array(
      '#type' => 'details',
      '#title' => $this
        ->t('Batch update settings'),
      '#description' => $this
        ->t('Configure behaviour of the batch field update feature. When changing field encryption settings for fields that already contain data, a batch process will be started that updates the existing field values according to the new settings.'),
      '#open' => TRUE,
    );
    $form['batch_update']['batch_size'] = array(
      '#type' => 'number',
      '#title' => $this
        ->t('Batch size'),
      '#default_value' => $config
        ->get('batch_size'),
      '#description' => $this
        ->t('Specify the number of entities to process on each field update batch execution. It is recommended to keep this number low, to avoid timeouts.'),
    );
  }
  return $form;
}