public function FormBase::getElementIds in Form Builder 7.2
File
- src/
FormBase.php, line 372
Class
Namespace
Drupal\form_builderCode
public function getElementIds() {
$ids = array();
foreach (array_keys($this->elementArrays) as $id) {
if ($id !== FORM_BUILDER_ROOT) {
$ids[] = $id;
}
}
return $ids;
}