This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/opencase_entities/src/Form/OCEventTypeForm.php

66 lines
1.6 KiB
PHP

<?php
namespace Drupal\opencase_entities\Form;
use Drupal\Core\Entity\EntityForm;
use Drupal\Core\Form\FormStateInterface;
/**
* Class OCEventTypeForm.
*/
class OCEventTypeForm extends EntityForm {
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
$oc_event_type = $this->entity;
$form['label'] = [
'#type' => 'textfield',
'#title' => $this->t('Label'),
'#maxlength' => 255,
'#default_value' => $oc_event_type->label(),
'#description' => $this->t("Label for the Event type."),
'#required' => TRUE,
];
$form['id'] = [
'#type' => 'machine_name',
'#default_value' => $oc_event_type->id(),
'#machine_name' => [
'exists' => '\Drupal\opencase_entities\Entity\OCEventType::load',
],
'#disabled' => !$oc_event_type->isNew(),
];
/* You will need additional form elements for your custom properties. */
return $form;
}
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state) {
$oc_event_type = $this->entity;
$status = $oc_event_type->save();
switch ($status) {
case SAVED_NEW:
$this->messenger()->addMessage($this->t('Created the %label Event type.', [
'%label' => $oc_event_type->label(),
]));
break;
default:
$this->messenger()->addMessage($this->t('Saved the %label Event type.', [
'%label' => $oc_event_type->label(),
]));
}
$form_state->setRedirectUrl($oc_event_type->toUrl('collection'));
}
}