You are here

function block_titlelink_help in Block Title Link 6.2

Implementation of hook_help.

File

./block_titlelink.module, line 13
module for adding a link to a block title

Code

function block_titlelink_help($path, $arg) {
  switch ($path) {
    case 'admin/help#block_titlelink':
      $output = '<p>' . t('Blocks titles are by plain text by default. This module aims to allow users with adequate permissions to add links to block titles.') . '</p>';
      $output .= '<p>' . t('The configuration settings for Block Title Link are available in each of the blocks within the Block Title Link Settings fieldset. Each block may have its own link from the title with associated options. These may be set on each block, accessed from the <a href="@blocks">blocks administration page</a>.', array(
        '@blocks' => url('admin/build/block'),
      )) . '</p>';
      $output .= '<p>' . t('The display link checkbox may be unticked to not render the block title as a link. The data from the Block Title Link module may be used elsewhere in the block template (ex: as an icon)') . '</p>';
      return $output;
  }
}