You are here

function colorbox_inline_help in Colorbox Inline 8

Implements hook_help().

File

./colorbox_inline.module, line 21
Enable the "colorbox inline" functionality for Drupal 8.

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',
      ]);
  }
}