Collects and displays context help.
If switched on, all collected contex help sections will be shown for related HTML elements.
This module will automatically try to load these context help files within locales folder:html/app.contexthelp.html
html/[controller]/contexthelp.html
html/[controller]/[action]/contexthelp.html
You can register custom context help by calling this hook:
$payload = ['path' => 'my/example/contexthelp'];
$env->getCaptain()->callHook( 'ContextHelp', 'register', $this, $payload );
The given path must point to a file within locales HTML folder.
As file extension, .html is appended automatically.
So the example path will resolve to file locales/[xy]/my/example/contexthelp.html.
Attention: This module needs PHPHtmlParser to be installed.
Please use composer to require "paquettg/php-html-parser": "^1.7"!