You are here

public function StatusReportController::statusReportPage in Acquia Content Hub 8.2

Renders "Status Report" page.

Return value

array Renderable array.

Throws

\Exception

1 string reference to 'StatusReportController::statusReportPage'
acquia_contenthub_publisher.routing.yml in modules/acquia_contenthub_publisher/acquia_contenthub_publisher.routing.yml
modules/acquia_contenthub_publisher/acquia_contenthub_publisher.routing.yml

File

modules/acquia_contenthub_publisher/src/Controller/StatusReportController.php, line 72

Class

StatusReportController
Controller for Status Reports.

Namespace

Drupal\acquia_contenthub_publisher\Controller

Code

public function statusReportPage(Request $request) {
  $page = $request->query
    ->has('page') ? $request->query
    ->get('page') : 0;
  return [
    $this
      ->getWebhooksPageSection($page),
  ];
}