Same name and namespace in other branches
  1. 7.x-1.x exif.module \exif_help() 1 comment
  2. 8.x-2.x exif.module \exif_help() 1 comment

Implements hook_help().

Manage the exif help page route.

File

./exif.module, line 20

Code

function exif_help($route_name, RouteMatchInterface $route_match) {
    switch ($route_name) {
        case 'help.page.exif':
            return ExifHelp::content();
        default:
            return NULL;
    }
}