class SystemStateEdit in Devel 8.2
Same name and namespace in other branches
- 8.3 src/Form/SystemStateEdit.php \Drupal\devel\Form\SystemStateEdit
- 8 src/Form/SystemStateEdit.php \Drupal\devel\Form\SystemStateEdit
- 4.x src/Form/SystemStateEdit.php \Drupal\devel\Form\SystemStateEdit
Form API form to edit a state.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait- class \Drupal\devel\Form\SystemStateEdit
 
Expanded class hierarchy of SystemStateEdit
1 string reference to 'SystemStateEdit'
File
- src/Form/ SystemStateEdit.php, line 16 
Namespace
Drupal\devel\FormView source
class SystemStateEdit extends FormBase {
  /**
   * The state store.
   *
   * @var \Drupal\Core\State\StateInterface
   */
  protected $state;
  /**
   * Constructs a new SystemStateEdit object.
   *
   * @param \Drupal\Core\State\StateInterface $state
   *   The state service.
   */
  public function __construct(StateInterface $state) {
    $this->state = $state;
  }
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('state'));
  }
  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'devel_state_system_edit_form';
  }
  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, $state_name = '') {
    // Get the old value
    $old_value = $this->state
      ->get($state_name);
    if (!isset($old_value)) {
      $this
        ->messenger()
        ->addWarning($this
        ->t('State @name does not exist in the system.', [
        '@name' => $state_name,
      ]));
      return;
    }
    // Only simple structures are allowed to be edited.
    $disabled = !$this
      ->checkObject($old_value);
    if ($disabled) {
      $this
        ->messenger()
        ->addWarning($this
        ->t('Only simple structures are allowed to be edited. State @name contains objects.', [
        '@name' => $state_name,
      ]));
    }
    // First we will show the user the content of the variable about to be edited.
    $form['value'] = [
      '#type' => 'item',
      '#title' => $this
        ->t('Current value for %name', [
        '%name' => $state_name,
      ]),
      '#markup' => kpr($old_value, TRUE),
    ];
    $transport = 'plain';
    if (!$disabled && is_array($old_value)) {
      try {
        $old_value = Yaml::encode($old_value);
        $transport = 'yaml';
      } catch (InvalidDataTypeException $e) {
        $this
          ->messenger()
          ->addError($this
          ->t('Invalid data detected for @name : %error', [
          '@name' => $state_name,
          '%error' => $e
            ->getMessage(),
        ]));
        return;
      }
    }
    // Store in the form the name of the state variable
    $form['state_name'] = [
      '#type' => 'value',
      '#value' => $state_name,
    ];
    // Set the transport format for the new value. Values:
    //  - plain
    //  - yaml
    $form['transport'] = [
      '#type' => 'value',
      '#value' => $transport,
    ];
    $form['new_value'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('New value'),
      '#default_value' => $disabled ? '' : $old_value,
      '#disabled' => $disabled,
      '#rows' => 15,
    ];
    $form['actions'] = [
      '#type' => 'actions',
    ];
    $form['actions']['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Save'),
      '#disabled' => $disabled,
    ];
    $form['actions']['cancel'] = [
      '#type' => 'link',
      '#title' => $this
        ->t('Cancel'),
      '#url' => Url::fromRoute('devel.state_system_page'),
    ];
    return $form;
  }
  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    $values = $form_state
      ->getValues();
    if ($values['transport'] == 'yaml') {
      // try to parse the new provided value
      try {
        $parsed_value = Yaml::decode($values['new_value']);
        $form_state
          ->setValue('parsed_value', $parsed_value);
      } catch (InvalidDataTypeException $e) {
        $form_state
          ->setErrorByName('new_value', $this
          ->t('Invalid input: %error', [
          '%error' => $e
            ->getMessage(),
        ]));
      }
    }
    else {
      $form_state
        ->setValue('parsed_value', $values['new_value']);
    }
  }
  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    // Save the state
    $values = $form_state
      ->getValues();
    $this->state
      ->set($values['state_name'], $values['parsed_value']);
    $form_state
      ->setRedirectUrl(Url::fromRoute('devel.state_system_page'));
    $this
      ->messenger()
      ->addMessage($this
      ->t('Variable %variable was successfully edited.', [
      '%variable' => $values['state_name'],
    ]));
    $this
      ->logger('devel')
      ->info('Variable %variable was successfully edited.', [
      '%variable' => $values['state_name'],
    ]);
  }
  /**
   * Helper function to determine if a variable is or contains an object.
   *
   * @param $data
   *   Input data to check
   *
   * @return bool
   *   TRUE if the variable is not an object and does not contain one.
   */
  protected function checkObject($data) {
    if (is_object($data)) {
      return FALSE;
    }
    if (is_array($data)) {
      // If the current object is an array, then check recursively.
      foreach ($data as $value) {
        // If there is an object the whole container is "contaminated"
        if (!$this
          ->checkObject($value)) {
          return FALSE;
        }
      }
    }
    // All checks pass.
    return TRUE;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| DependencySerializationTrait:: | protected | property | An array of entity type IDs keyed by the property name of their storages. | |
| DependencySerializationTrait:: | protected | property | An array of service IDs keyed by property name used for serialization. | |
| DependencySerializationTrait:: | public | function | 1 | |
| DependencySerializationTrait:: | public | function | 2 | |
| FormBase:: | protected | property | The config factory. | 1 | 
| FormBase:: | protected | property | The request stack. | 1 | 
| FormBase:: | protected | property | The route match. | |
| FormBase:: | protected | function | Retrieves a configuration object. | |
| FormBase:: | protected | function | Gets the config factory for this form. | 1 | 
| FormBase:: | private | function | Returns the service container. | |
| FormBase:: | protected | function | Gets the current user. | |
| FormBase:: | protected | function | Gets the request object. | |
| FormBase:: | protected | function | Gets the route match. | |
| FormBase:: | protected | function | Gets the logger for a specific channel. | |
| FormBase:: | protected | function | Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: | |
| FormBase:: | public | function | Resets the configuration factory. | |
| FormBase:: | public | function | Sets the config factory for this form. | |
| FormBase:: | public | function | Sets the request stack object to use. | |
| LinkGeneratorTrait:: | protected | property | The link generator. | 1 | 
| LinkGeneratorTrait:: | protected | function | Returns the link generator. | |
| LinkGeneratorTrait:: | protected | function | Renders a link to a route given a route name and its parameters. | |
| LinkGeneratorTrait:: | public | function | Sets the link generator service. | |
| LoggerChannelTrait:: | protected | property | The logger channel factory service. | |
| LoggerChannelTrait:: | protected | function | Gets the logger for a specific channel. | |
| LoggerChannelTrait:: | public | function | Injects the logger channel factory. | |
| MessengerTrait:: | protected | property | The messenger. | 29 | 
| MessengerTrait:: | public | function | Gets the messenger. | 29 | 
| MessengerTrait:: | public | function | Sets the messenger. | |
| RedirectDestinationTrait:: | protected | property | The redirect destination service. | 1 | 
| RedirectDestinationTrait:: | protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
| RedirectDestinationTrait:: | protected | function | Returns the redirect destination service. | |
| RedirectDestinationTrait:: | public | function | Sets the redirect destination service. | |
| StringTranslationTrait:: | protected | property | The string translation service. | 1 | 
| StringTranslationTrait:: | protected | function | Formats a string containing a count of items. | |
| StringTranslationTrait:: | protected | function | Returns the number of plurals supported by a given language. | |
| StringTranslationTrait:: | protected | function | Gets the string translation service. | |
| StringTranslationTrait:: | public | function | Sets the string translation service to use. | 2 | 
| StringTranslationTrait:: | protected | function | Translates a string to the current language or to a given language. | |
| SystemStateEdit:: | protected | property | The state store. | |
| SystemStateEdit:: | public | function | Form constructor. Overrides FormInterface:: | |
| SystemStateEdit:: | protected | function | Helper function to determine if a variable is or contains an object. | |
| SystemStateEdit:: | public static | function | Instantiates a new instance of this class. Overrides FormBase:: | |
| SystemStateEdit:: | public | function | Returns a unique string identifying the form. Overrides FormInterface:: | |
| SystemStateEdit:: | public | function | Form submission handler. Overrides FormInterface:: | |
| SystemStateEdit:: | public | function | Form validation handler. Overrides FormBase:: | |
| SystemStateEdit:: | public | function | Constructs a new SystemStateEdit object. | |
| UrlGeneratorTrait:: | protected | property | The url generator. | |
| UrlGeneratorTrait:: | protected | function | Returns the URL generator service. | |
| UrlGeneratorTrait:: | public | function | Sets the URL generator service. | |
| UrlGeneratorTrait:: | protected | function | Generates a URL or path for a specific route based on the given parameters. | 
