You are here

function block_class_help in Block Class 7.2

Same name and namespace in other branches
  1. 8 block_class.module \block_class_help()

Implements hook_help().

File

./block_class.module, line 16
Enhanced control over the CSS Classes of any Block.

Code

function block_class_help($path, $arg) {
  switch ($path) {

    // Main module help for the block_class module
    case 'admin/help#block_class':
      $output = '<p>Block Class allows users to add classes to any block through the block\'s configuration interface. By adding a very short snippet of PHP to a theme\'s block.tpl.php file, classes can be added to the parent element of a block.</p>';
      $output .= '<p>For more information, please visit the <a href="https://www.drupal.org/project/block_class">official project page on Drupal.org</a>.</p>';
      return $output;
  }
}