function mentions_help in Open Social 8.3
Same name and namespace in other branches
- 8.9 modules/custom/mentions/mentions.module \mentions_help()
- 8 modules/custom/mentions/mentions.module \mentions_help()
- 8.2 modules/custom/mentions/mentions.module \mentions_help()
- 8.4 modules/custom/mentions/mentions.module \mentions_help()
- 8.5 modules/custom/mentions/mentions.module \mentions_help()
- 8.6 modules/custom/mentions/mentions.module \mentions_help()
- 8.7 modules/custom/mentions/mentions.module \mentions_help()
- 8.8 modules/custom/mentions/mentions.module \mentions_help()
- 10.3.x modules/custom/mentions/mentions.module \mentions_help()
- 10.0.x modules/custom/mentions/mentions.module \mentions_help()
- 10.1.x modules/custom/mentions/mentions.module \mentions_help()
- 10.2.x modules/custom/mentions/mentions.module \mentions_help()
Implements hook_help().
File
- modules/
custom/ mentions/ mentions.module, line 18 - Code for the mentions module.
Code
function mentions_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'entity.mentions_type.list':
$text_format_url = Url::fromRoute('filter.admin_overview');
$text_format_link = Link::fromTextAndUrl(t('text formats'), $text_format_url)
->toString();
$output = t("You can enable 'Mentions Filter' for the mentions type below for the appropriate @text_format", [
'@text_format' => $text_format_link,
]);
return $output;
}
}