You are here

function footnotes_help in Footnotes 8.2

Same name and namespace in other branches
  1. 5.2 footnotes.module \footnotes_help()
  2. 5 footnotes.module \footnotes_help()
  3. 6.2 footnotes.module \footnotes_help()
  4. 6 footnotes.module \footnotes_help()
  5. 7.3 footnotes.module \footnotes_help()
  6. 7.2 footnotes.module \footnotes_help()

Implements hook_help().

File

./footnotes.module, line 17
This file contains the hooks for Footnotes module.

Code

function footnotes_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.footnotes':
      return t("Insert automatically numbered footnotes using &lt;fn&gt; or [fn] tags. Enable the footnotes text filter <a href=':href'>here</a>", [
        ':href' => Url::fromRoute('filter.admin_overview')
          ->toString(),
      ]);
  }
}