GathercontentMultistepFormBase.php in GatherContent 8
File
src/Form/GathercontentMultistepFormBase.php
View source
<?php
namespace Drupal\gathercontent\Form;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\EntityManagerInterface;
use Drupal\Core\Entity\Query\QueryFactory;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\user\PrivateTempStoreFactory;
use Symfony\Component\DependencyInjection\ContainerInterface;
abstract class GathercontentMultistepFormBase extends FormBase {
protected $entity_manager;
protected $date_formatter;
protected $tempStoreFactory;
protected $entityQuery;
protected $store;
public function __construct(EntityManagerInterface $entity_manager, DateFormatterInterface $date_formatter, PrivateTempStoreFactory $temp_store_factory, QueryFactory $entityQuery) {
$this->entity_manager = $entity_manager;
$this->date_formatter = $date_formatter;
$this->tempStoreFactory = $temp_store_factory;
$this->entityQuery = $entityQuery;
$this->store = $this->tempStoreFactory
->get('gathercontent_multistep_data');
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity.manager'), $container
->get('date.formatter'), $container
->get('user.private_tempstore'), $container
->get('entity.query'));
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form = array();
$form['actions']['#type'] = 'actions';
$form['actions']['submit'] = array(
'#type' => 'submit',
'#value' => $this
->t('Submit'),
'#button_type' => 'primary',
'#weight' => 10,
);
return $form;
}
public function submitForm(array &$form, FormStateInterface $form_state) {
}
protected function saveData() {
$this
->deleteStore([]);
drupal_set_message($this
->t('The form has been saved.'));
}
protected function deleteStore(array $keys) {
foreach ($keys as $key) {
$this->store
->delete($key);
}
}
}