MultistepFormBase.php in GatherContent 8.4
File
gathercontent_ui/src/Form/MultistepFormBase.php
View source
<?php
namespace Drupal\gathercontent_ui\Form;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\user\PrivateTempStoreFactory;
use Symfony\Component\DependencyInjection\ContainerInterface;
abstract class MultistepFormBase extends FormBase {
protected $entityTypeManager;
protected $dateFormatter;
protected $tempStoreFactory;
protected $store;
public function __construct(EntityTypeManagerInterface $entity_type_manager, DateFormatterInterface $date_formatter, PrivateTempStoreFactory $temp_store_factory) {
$this->entityTypeManager = $entity_type_manager;
$this->dateFormatter = $date_formatter;
$this->tempStoreFactory = $temp_store_factory;
$this->store = $this->tempStoreFactory
->get('gathercontent_multistep_data');
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager'), $container
->get('date.formatter'), $container
->get('user.private_tempstore'));
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form = [];
$form['actions']['#type'] = 'actions';
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Submit'),
'#button_type' => 'primary',
'#weight' => 10,
];
return $form;
}
public function submitForm(array &$form, FormStateInterface $form_state) {
}
protected function deleteStore(array $keys) {
foreach ($keys as $key) {
$this->store
->delete($key);
}
}
}