public function RegistrantsElementUtility::getShowCreateEntitySubform in RNG - Events and Registrations 3.x
Same name and namespace in other branches
- 8.2 src/RegistrantsElementUtility.php \Drupal\rng\RegistrantsElementUtility::getShowCreateEntitySubform()
- 8 src/RegistrantsElementUtility.php \Drupal\rng\RegistrantsElementUtility::getShowCreateEntitySubform()
Get form state for opening the create-an-entity sub-form.
Return value
bool Wther the create-an-entity sub-form is open.
File
- src/
RegistrantsElementUtility.php, line 182
Class
Namespace
Drupal\rngCode
public function getShowCreateEntitySubform() {
return (bool) $this->formState
->get(array_merge($this->element['#parents'], [
'show_entity_create_form',
]));
}