You are here

public function WebformSubmissionLogController::nodeOverview in Webform 8.5

Same name and namespace in other branches
  1. 6.x 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 225

Class

WebformSubmissionLogController
Returns responses for webform submission log routes.

Namespace

Drupal\webform_submission_log\Controller

Code

public function nodeOverview(WebformInterface $webform = NULL, WebformSubmissionInterface $webform_submission = NULL, EntityInterface $node = NULL) {
  return $this
    ->overview($webform, $webform_submission, $node);
}