Same name and namespace in other branches
  1. 8.x-2.x src/Controller/ExifSettingsController.php \Drupal\exif\Controller\ExifSettingsController::showGuide() 1 comment

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',
            ],
        ],
    ];
}