You are here

function asset_injector_help in Asset Injector 8

Same name and namespace in other branches
  1. 8.2 asset_injector.module \asset_injector_help()

Implements hook_help().

File

./asset_injector.module, line 18
Contains module asset_injector.

Code

function asset_injector_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.asset_injector':
      $output = '<p>' . t('Use Asset injector rules to add small snippets of code to the page output when specific criteria are met. For example, a simple rule could float a particular div to the right on node editing pages.') . '</p>';
      return $output;
    default:
  }
}