You are here

function answers_lock_example_help in Answers 7.4

Implements hook_help().

File

answers_lock_example/answers_lock_example.module, line 31
Example module of the question 'lock'.

Code

function answers_lock_example_help($path, $arg) {
  switch ($path) {
    case "admin/help#modulename":
      return '<p>' . t('Demonstrate the programming API for question locking.') . '</p>';
  }
}