public function TeamInvitationDeleteForm::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 ContentEntityDeleteForm::buildForm
File
- modules/
apigee_edge_teams/ src/ Entity/ Form/ TeamInvitationDeleteForm.php, line 59
Class
- TeamInvitationDeleteForm
- Provides the delete form for team_invitation.
Namespace
Drupal\apigee_edge_teams\Entity\FormCode
public function buildForm(array $form, FormStateInterface $form_state, TeamInterface $team = NULL) {
$this->team = $team;
return parent::buildForm($form, $form_state);
}