sports_league-8.x-1.x-dev/modules/sl_match_moments/src/Form/SLMatchMomentsTypeForm.php
modules/sl_match_moments/src/Form/SLMatchMomentsTypeForm.php
<?php
declare(strict_types=1);
namespace Drupal\sl_match_moments\Form;
use Drupal\Core\Entity\BundleEntityFormBase;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\sl_match_moments\Entity\SLMatchMomentsType;
/**
* Form handler for sports league match moments type forms.
*/
final class SLMatchMomentsTypeForm extends BundleEntityFormBase {
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state): array {
$form = parent::form($form, $form_state);
if ($this->operation === 'edit') {
$form['#title'] = $this->t('Edit %label sports league match moments type', ['%label' => $this->entity->label()]);
}
$form['label'] = [
'#title' => $this->t('Label'),
'#type' => 'textfield',
'#default_value' => $this->entity->label(),
'#description' => $this->t('The human-readable name of this sports league match moments type.'),
'#required' => TRUE,
];
$form['id'] = [
'#type' => 'machine_name',
'#default_value' => $this->entity->id(),
'#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH,
'#machine_name' => [
'exists' => [SLMatchMomentsType::class, 'load'],
'source' => ['label'],
],
'#description' => $this->t('A unique machine-readable name for this sports league match moments type. It must only contain lowercase letters, numbers, and underscores.'),
];
return $this->protectBundleIdElement($form);
}
/**
* {@inheritdoc}
*/
protected function actions(array $form, FormStateInterface $form_state): array {
$actions = parent::actions($form, $form_state);
$actions['submit']['#value'] = $this->t('Save sports league match moments type');
$actions['delete']['#value'] = $this->t('Delete sports league match moments type');
return $actions;
}
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state): int {
$result = parent::save($form, $form_state);
$message_args = ['%label' => $this->entity->label()];
$this->messenger()->addStatus(
match($result) {
SAVED_NEW => $this->t('The sports league match moments type %label has been added.', $message_args),
SAVED_UPDATED => $this->t('The sports league match moments type %label has been updated.', $message_args),
}
);
$form_state->setRedirectUrl($this->entity->toUrl('collection'));
return $result;
}
}
