public function Wizard::getParameter in Flexiform 8
File
- contrib/
wizard/ src/ Entity/ Wizard.php, line 248
Class
- Wizard
- Defines a flexiform wizard entity class.
Namespace
Drupal\flexiform_wizard\EntityCode
public function getParameter($name) {
if ($this
->hasParameter($name)) {
return $this->parameters[$name];
}
return NULL;
}