You are here

function imce_help in IMCE 8.2

Same name and namespace in other branches
  1. 8 imce.module \imce_help()

Implements hook_help().

1 string reference to 'imce_help'
ImceHelpController::index in src/Controller/ImceHelpController.php

File

./imce.module, line 126
Defines Drupal hooks for imce module.

Code

function imce_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name === 'help.page.imce') {
    return ImceHelpController::htmlHelp();
  }
}