function replicate_help in Replicate 7
Same name and namespace in other branches
- 8 replicate.module \replicate_help()
Implements hook_help().
File
- ./replicate.module, line 152 
- Main methods of Replicate module.
Code
function replicate_help($path, $arg) {
  switch ($path) {
    case 'admin/help#replicate':
      // Return a line-break version of the module README.txt.
      return check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
  }
}