openquestions-1.0.x-dev/src/Form/OqItemTypeForm.php
src/Form/OqItemTypeForm.php
<?php
namespace Drupal\openquestions\Form;
use Drupal\Core\Entity\BundleEntityFormBase;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Form\FormStateInterface;
/**
* Form handler for oq item type forms.
*/
class OqItemTypeForm extends BundleEntityFormBase {
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
$entity_type = $this->entity;
if ($this->operation == 'edit') {
$form['#title'] = $this->t('Edit %label oq item 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 oq item type.'),
'#required' => TRUE,
'#size' => 30,
];
$form['id'] = [
'#type' => 'machine_name',
'#default_value' => $entity_type->id(),
'#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH,
'#machine_name' => [
'exists' => ['Drupal\openquestions\Entity\OqItemType', 'load'],
'source' => ['label'],
],
'#description' => $this->t('A unique machine-readable name for this oq item 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 oq item type');
$actions['delete']['#value'] = $this->t('Delete oq item 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()];
$message = $this->t('Unknown');
if ($status == SAVED_UPDATED) {
$message = $this->t('The oq item type %name has been updated.', $t_args);
}
elseif ($status == SAVED_NEW) {
$message = $this->t('The oq item type %name has been added.', $t_args);
}
$this->messenger()->addStatus($message);
$form_state->setRedirectUrl($entity_type->toUrl('collection'));
return $status;
}
}
