You are here

function colorized_gmap_help in Colorized google maps block 7

Implements hook_help().

File

./colorized_gmap.module, line 11
Colorized gmap module.

Code

function colorized_gmap_help($path, $arg) {
  switch ($path) {
    case 'admin/help#colorized_gmap':

      // Return a line-break version of the module README.txt
      return check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
  }
}