Same name and namespace in other branches
  1. 8.x-1.x colorbox_inline.module \colorbox_inline_help() 1 comment

Implements hook_help().

File

./colorbox_inline.module, line 21

Code

function colorbox_inline_help($route_name, RouteMatchInterface $route_match) {
    switch ($route_name) {
        case 'help.page.colorbox_inline':
            return t('<p>The Colorbox Inline module allows you to open content already on the page within a colorbox.</p>
<p>See the <a href=":project_page">project page on Drupal.org</a> for more details.</p>', [
                ':project_page' => 'https://www.drupal.org/project/colorbox_inline',
            ]);
    }
}