content_entity_builder-8.x-1.x-dev/src/Form/ContentTypeFormBase.php
src/Form/ContentTypeFormBase.php
<?php
namespace Drupal\content_entity_builder\Form;
use Drupal\Core\Entity\EntityForm;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Base form for content entity type add and edit forms.
*/
abstract class ContentTypeFormBase extends EntityForm {
/**
* The entity being used by this form.
*
* @var \Drupal\content_entity_builder\ContentTypeInterface
*/
protected $entity;
/**
* The content type entity storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $entityStorage;
/**
* Constructs a base class for content_type add and edit forms.
*
* @param \Drupal\Core\Entity\EntityStorageInterface $entity_storage
* The block tabs entity storage.
*/
public function __construct(EntityStorageInterface $entity_storage) {
$this->entityStorage = $entity_storage;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('entity_type.manager')->getStorage('content_type')
);
}
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form['label'] = [
'#type' => 'textfield',
'#title' => $this->t('Content entity type name'),
'#default_value' => $this->entity->label(),
'#required' => TRUE,
];
$form['id'] = [
'#type' => 'machine_name',
'#machine_name' => [
'exists' => [$this->entityStorage, 'load'],
],
'#default_value' => $this->entity->id(),
'#required' => TRUE,
];
return parent::form($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state) {
parent::save($form, $form_state);
$form_state->setRedirectUrl($this->entity->toUrl('edit-form'));
}
}
