public function OrgForm::buildForm in RedHen CRM 8
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides EntityForm::buildForm
File
- modules/
redhen_org/ src/ Form/ OrgForm.php, line 17
Class
- OrgForm
- Form controller for Org edit forms.
Namespace
Drupal\redhen_org\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
/* @var $entity \Drupal\redhen_org\Entity\Org */
$form = parent::buildForm($form, $form_state);
return $form;
}