You are here

function page_url_qr_code_block_help in Page URL QR Code Block 8

Same name and namespace in other branches
  1. 7 page_url_qr_code_block.module \page_url_qr_code_block_help()

Implements hook_help().

File

./page_url_qr_code_block.module, line 13
Contains module logic for page_url_qr_code_block.

Code

function page_url_qr_code_block_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.page_url_qr_code_block':
      $output = '<p>' . t('A tiny module that provides a Block with a QR Code for that Page automatically. You can configure through block configure page.') . '</p>';
      return $output;
    case 'entity.page_url_qr_code_block.edit_form':
      return t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Description</em> field is recommended in order to better identify the precise action taking place.');
  }
}