You are here

SettingsProfileForm.php in Backup and Migrate 5.0.x

Same filename and directory in other branches
  1. 8.4 src/Form/SettingsProfileForm.php

File

src/Form/SettingsProfileForm.php
View source
<?php

namespace Drupal\backup_migrate\Form;

use Drupal\backup_migrate\Drupal\Config\DrupalConfigHelper;
use Drupal\Core\Entity\EntityForm;
use Drupal\Core\Form\FormStateInterface;

/**
 *
 *
 * @package Drupal\backup_migrate\Form
 */
class SettingsProfileForm extends EntityForm {

  /**
   * {@inheritdoc}
   */
  public function form(array $form, FormStateInterface $form_state) {
    $form = parent::form($form, $form_state);
    $backup_migrate_settings = $this->entity;
    $form['label'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Label'),
      '#maxlength' => 255,
      '#default_value' => $backup_migrate_settings
        ->label(),
      '#required' => TRUE,
    ];
    $form['id'] = [
      '#type' => 'machine_name',
      '#default_value' => $backup_migrate_settings
        ->id(),
      '#machine_name' => [
        'exists' => '\\Drupal\\backup_migrate\\Entity\\SettingsProfile::load',
      ],
      '#disabled' => !$backup_migrate_settings
        ->isNew(),
    ];

    // Make sure the config is a valid empty array.
    // @todo Is this a bug in the API?
    $config = $backup_migrate_settings
      ->get('config');
    if (empty($config)) {
      $config = [];
    }
    $bam = backup_migrate_get_service_object($config);
    $form['config'] = DrupalConfigHelper::buildAllPluginsForm($bam
      ->plugins(), 'backup', [
      'config',
    ]);
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function save(array $form, FormStateInterface $form_state) {
    $backup_migrate_settings = $this->entity;
    $status = $backup_migrate_settings
      ->save();
    switch ($status) {
      case SAVED_NEW:
        \Drupal::messenger()
          ->addMessage($this
          ->t('Created the %label Settings Profile.', [
          '%label' => $backup_migrate_settings
            ->label(),
        ]));
        break;
      default:
        \Drupal::messenger()
          ->addMessage($this
          ->t('Saved the %label Settings Profile.', [
          '%label' => $backup_migrate_settings
            ->label(),
        ]));
    }
    $form_state
      ->setRedirectUrl($backup_migrate_settings
      ->toUrl('collection'));
  }

}

Classes

Namesort descending Description
SettingsProfileForm @package Drupal\backup_migrate\Form