public function LearningPathMembershipController::createClassFormModal in Opigno Learning path 8
Same name and namespace in other branches
- 3.x src/Controller/LearningPathMembershipController.php \Drupal\opigno_learning_path\Controller\LearningPathMembershipController::createClassFormModal()
Callback for opening the create members modal form.
1 string reference to 'LearningPathMembershipController::createClassFormModal'
File
- src/
Controller/ LearningPathMembershipController.php, line 87
Class
- LearningPathMembershipController
- Controller for the actions related to LP membership.
Namespace
Drupal\opigno_learning_path\ControllerCode
public function createClassFormModal() {
$form = $this->formBuilder
->getForm('Drupal\\opigno_learning_path\\Form\\LearningPathCreateClassForm');
$command = new OpenModalDialogCommand($this
->t('Create a new class'), $form);
$response = new AjaxResponse();
$response
->addCommand($command);
return $response;
}