public function RemoveTeamMemberForm::buildForm in Apigee Edge 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 ConfirmFormBase::buildForm
File
- modules/
apigee_edge_teams/ src/ Form/ RemoveTeamMemberForm.php, line 106
Class
- RemoveTeamMemberForm
- Remove team members from.
Namespace
Drupal\apigee_edge_teams\FormCode
public function buildForm(array $form, FormStateInterface $form_state, TeamInterface $team = NULL, DeveloperInterface $developer = NULL) {
$this->team = $team;
$this->developer = $developer;
return parent::buildForm($form, $form_state);
}