public function AppEditForm::__construct in Apigee Edge 8
AppEditForm constructor.
Parameters
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.
\Drupal\Core\Render\RendererInterface $render: The renderer service.
Overrides AppForm::__construct
2 calls to AppEditForm::__construct()
- DeveloperAppEditForm::__construct in src/
Entity/ Form/ DeveloperAppEditForm.php - Constructs DeveloperAppEditForm.
- TeamAppEditForm::__construct in modules/
apigee_edge_teams/ src/ Entity/ Form/ TeamAppEditForm.php - Constructs TeamAppEditForm.
2 methods override AppEditForm::__construct()
- DeveloperAppEditForm::__construct in src/
Entity/ Form/ DeveloperAppEditForm.php - Constructs DeveloperAppEditForm.
- TeamAppEditForm::__construct in modules/
apigee_edge_teams/ src/ Entity/ Form/ TeamAppEditForm.php - Constructs TeamAppEditForm.
File
- src/
Entity/ Form/ AppEditForm.php, line 55
Class
- AppEditForm
- Base entity form for developer- and team (company) app edit forms.
Namespace
Drupal\apigee_edge\Entity\FormCode
public function __construct(EntityTypeManagerInterface $entity_type_manager, RendererInterface $render) {
parent::__construct($entity_type_manager);
$this->render = $render;
}