public function WebformConditionals::isExecuted in Webform 7.4
Returns whether the conditionals have been executed yet.
File
- includes/
webform.webformconditionals.inc, line 510 - Conditional engine to process dependencies within the webform's conditionals.
Class
- WebformConditionals
- Performs analysis and topological sorting on the conditionals.
Code
public function isExecuted() {
return (bool) $this->visibilityMap;
}