You are here

function page_url_qr_code_block_help in Page URL QR Code Block 7

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

Implements hook_help().

File

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

Code

function page_url_qr_code_block_help($path, $arg) {
  switch ($path) {
    case 'admin/help#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;
  }
}