You are here

function farm_help_permission in farmOS 7

Implements hook_permission().

File

modules/farm/farm_help/farm_help.module, line 22
Farm help module.

Code

function farm_help_permission() {
  return array(
    'access farm help' => array(
      'title' => t('Access farm help pages'),
      'description' => t('Access the farm help pages.'),
    ),
  );
}