function owl_help in Multipurpose Corporate Profile 8
Implements hook_help().
File
- modules/
contrib/ owl/ owl.module, line 14 - Contains owl.module..
Code
function owl_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the owl module.
case 'help.page.owl':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('OWL Carousel: Download code at: https://github.com/tabvn/owl') . '</p>';
$output .= '<p>' . t('Video tutorial how to install: https://www.youtube.com/watch?v=PzBMJqkNHQ0') . '</p>';
return $output;
default:
}
}