public function FormHelper::cleanUpFormInfo in Simple XML sitemap 4.x
Same name and namespace in other branches
- 8.3 src/Form/FormHelper.php \Drupal\simple_sitemap\Form\FormHelper::cleanUpFormInfo()
- 8.2 src/Form/FormHelper.php \Drupal\simple_sitemap\Form\FormHelper::cleanUpFormInfo()
Removes gathered form information from service object.
Needed because this service may contain form info from the previous operation when revived from the container.
Return value
$this
1 call to FormHelper::cleanUpFormInfo()
- FormHelper::processForm in src/
Form/ FormHelper.php
File
- src/
Form/ FormHelper.php, line 477
Class
- FormHelper
- Class FormHelper
Namespace
Drupal\simple_sitemap\FormCode
public function cleanUpFormInfo() : FormHelper {
$this->entityCategory = NULL;
$this->entityTypeId = NULL;
$this->bundleName = NULL;
$this->instanceId = NULL;
$this->bundleSettings = NULL;
return $this;
}