public function Webform::__construct in Little helpers 7
Same name and namespace in other branches
- 7.2 src/Webform/Webform.php \Drupal\little_helpers\Webform\Webform::__construct()
1 call to Webform::__construct()
- Webform::__wakeup in src/
Webform/ Webform.php
File
- src/
Webform/ Webform.php, line 15
Class
Namespace
Drupal\little_helpers\WebformCode
public function __construct($node) {
$this->node = $node;
$this->webform =& $node->webform;
if (!isset($this->webform['cids'])) {
foreach ($this->webform['components'] as $component) {
$this->webform['cids'][$component['form_key']] = (int) $component['cid'];
}
}
}