contacts_events-8.x-1.x-dev/modules/accommodation/src/Form/AccommodationTypeForm.php
modules/accommodation/src/Form/AccommodationTypeForm.php
<?php
namespace Drupal\contacts_events_accommodation\Form;
use Drupal\Core\Entity\BundleEntityFormBase;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Form\FormStateInterface;
/**
* Form handler for accommodation type forms.
*/
class AccommodationTypeForm extends BundleEntityFormBase {
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
$entity_type = $this->entity;
if ($this->operation == 'add') {
$form['#title'] = $this->t('Add accommodation type');
}
else {
$form['#title'] = $this->t(
'Edit %label accommodation type',
['%label' => $entity_type->label()]
);
}
$form['label'] = [
'#title' => $this->t('Label'),
'#type' => 'textfield',
'#default_value' => $entity_type->label(),
'#description' => $this->t('The human-readable name of this accommodation type.'),
'#required' => TRUE,
'#size' => 30,
];
$form['id'] = [
'#type' => 'machine_name',
'#default_value' => $entity_type->id(),
'#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH,
'#machine_name' => [
// phpcs:ignore Drupal.Arrays.Array.LongLineDeclaration
'exists' => ['Drupal\contacts_events_accommodation\Entity\AccommodationType', 'load'],
'source' => ['label'],
],
'#description' => $this->t('A unique machine-readable name for this accommodation type. It must only contain lowercase letters, numbers, and underscores.'),
];
return $this->protectBundleIdElement($form);
}
/**
* {@inheritdoc}
*/
protected function actions(array $form, FormStateInterface $form_state) {
$actions = parent::actions($form, $form_state);
$actions['submit']['#value'] = $this->t('Save accommodation type');
$actions['delete']['#value'] = $this->t('Delete accommodation type');
return $actions;
}
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state) {
$entity_type = $this->entity;
$entity_type->set('id', trim($entity_type->id()));
$entity_type->set('label', trim($entity_type->label()));
$status = $entity_type->save();
$t_args = ['%name' => $entity_type->label()];
if ($status == SAVED_UPDATED) {
$message = $this->t('The accommodation type %name has been updated.', $t_args);
}
elseif ($status == SAVED_NEW) {
$message = $this->t('The accommodation type %name has been added.', $t_args);
}
$this->messenger()->addStatus($message);
$form_state->setRedirectUrl($entity_type->toUrl('collection'));
}
}
