function mail_edit_help in Mail Editor 8
Same name and namespace in other branches
- 2.0.x mail_edit.module \mail_edit_help()
Implements hook_help().
File
- ./
mail_edit.module, line 13 - Primary hook implementations for the Mail Edit module.
Code
function mail_edit_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.mail_edit':
return '<p>' . t('Edit any of the emails which are defined throughout the site.') . '</p>';
}
}