public function WebformSubmissionLogController::nodeOverview in Webform 6.x
Same name and namespace in other branches
- 8.5 modules/webform_submission_log/src/Controller/WebformSubmissionLogController.php \Drupal\webform_submission_log\Controller\WebformSubmissionLogController::nodeOverview()
Wrapper that allows the $node to be used as $source_entity.
1 string reference to 'WebformSubmissionLogController::nodeOverview'
- webform_submission_log.routing.yml in modules/
webform_submission_log/ webform_submission_log.routing.yml - modules/webform_submission_log/webform_submission_log.routing.yml
File
- modules/
webform_submission_log/ src/ Controller/ WebformSubmissionLogController.php, line 183
Class
- WebformSubmissionLogController
- Returns responses for webform submission log routes.
Namespace
Drupal\webform_submission_log\ControllerCode
public function nodeOverview(WebformInterface $webform = NULL, WebformSubmissionInterface $webform_submission = NULL, EntityInterface $node = NULL) {
return $this
->overview($webform, $webform_submission, $node);
}