You are here

function restful_help in RESTful 7

Same name and namespace in other branches
  1. 7.2 restful.module \restful_help()

Implements hook_help().

File

./restful.module, line 214

Code

function restful_help($path, $arg) {
  switch ($path) {
    case 'admin/structure/block':
    case 'admin/help#restful':
      return '<p>' . t('This module is managed in GitHub. Please make sure to read the docs in the !link page for more help.', array(
        '!link' => l('README.md', 'https://github.com/Gizra/restful/blob/7.x-1.x/README.md'),
      )) . '</p>';
  }
}