You are here

public function FormHelper::processForm in Simple XML sitemap 8.2

Same name and namespace in other branches
  1. 8.3 src/Form/FormHelper.php \Drupal\simple_sitemap\Form\FormHelper::processForm()
  2. 4.x src/Form/FormHelper.php \Drupal\simple_sitemap\Form\FormHelper::processForm()

Parameters

\Drupal\Core\Form\FormStateInterface $form_state:

Return value

bool

File

src/Form/FormHelper.php, line 107

Class

FormHelper
Class FormHelper @package Drupal\simple_sitemap\Form

Namespace

Drupal\simple_sitemap\Form

Code

public function processForm(FormStateInterface $form_state) {
  $this->formState = $form_state;
  $this
    ->cleanUpFormInfo();
  $this
    ->getEntityDataFromFormEntity();
  return $this
    ->supports();
}