You are here

UserModuleStatusForm.php in Opigno module 8

Same filename and directory in other branches
  1. 3.x src/Form/UserModuleStatusForm.php

File

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

namespace Drupal\opigno_module\Form;

use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Form\FormStateInterface;

/**
 * Form controller for User module status edit forms.
 *
 * @ingroup opigno_module
 */
class UserModuleStatusForm extends ContentEntityForm {

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {

    /* @var $entity \Drupal\opigno_module\Entity\UserModuleStatus */
    $form = parent::buildForm($form, $form_state);
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function save(array $form, FormStateInterface $form_state) {
    $entity =& $this->entity;
    $status = parent::save($form, $form_state);
    switch ($status) {
      case SAVED_NEW:
        \Drupal::messenger()
          ->addMessage($this
          ->t('Created the %label User module status.', [
          '%label' => $entity
            ->label(),
        ]));
        break;
      default:
        \Drupal::messenger()
          ->addMessage($this
          ->t('Saved the %label User module status.', [
          '%label' => $entity
            ->label(),
        ]));
    }
    $form_state
      ->setRedirect('entity.user_module_status.canonical', [
      'user_module_status' => $entity
        ->id(),
    ]);
  }

}

Classes

Namesort descending Description
UserModuleStatusForm Form controller for User module status edit forms.