You are here

public function FormBase::getElementIds in Form Builder 7.2

File

src/FormBase.php, line 372

Class

FormBase

Namespace

Drupal\form_builder

Code

public function getElementIds() {
  $ids = array();
  foreach (array_keys($this->elementArrays) as $id) {
    if ($id !== FORM_BUILDER_ROOT) {
      $ids[] = $id;
    }
  }
  return $ids;
}