You are here

public function ExifSettingsController::showGuide in Exif 8

Same name and namespace in other branches
  1. 8.2 src/Controller/ExifSettingsController.php \Drupal\exif\Controller\ExifSettingsController::showGuide()

Button to go to help page.

Use by routing.yml.

1 string reference to 'ExifSettingsController::showGuide'
exif.routing.yml in ./exif.routing.yml
exif.routing.yml

File

src/Controller/ExifSettingsController.php, line 58

Class

ExifSettingsController
Class ExifSettingsController manage action of settings pages.

Namespace

Drupal\exif\Controller

Code

public function showGuide() {
  return [
    '#message' => "",
    '#taxonomy' => 'http://drupal.org/handbook/modules/taxonomy/',
    '#theme' => 'exif_helper_page',
    '#attached' => [
      'library' => [
        'exif/exif-admin',
      ],
    ],
  ];
}