You are here

public function CourseAdminController::overview in Course 8.3

Same name and namespace in other branches
  1. 8.2 src/Controller/CourseAdminController.php \Drupal\course\Controller\CourseAdminController::overview()
  2. 3.x src/Controller/CourseAdminController.php \Drupal\course\Controller\CourseAdminController::overview()

Provide the administration overview page.

Parameters

string $link_id: The ID of the administrative path link for which to display child links.

Return value

array A renderable array of the administration overview page.

Overrides SystemController::overview

1 string reference to 'CourseAdminController::overview'
course.routing.yml in ./course.routing.yml
course.routing.yml

File

src/Controller/CourseAdminController.php, line 12

Class

CourseAdminController

Namespace

Drupal\course\Controller

Code

public function overview($link_id = 'course.admin') {
  $build['blocks'] = parent::overview($link_id);
  return $build;
}