You are here

function farm_dashboard_permission in farmOS 7

Implements hook_permission().

File

modules/farm/farm_dashboard/farm_dashboard.module, line 20
Farm dashboard module.

Code

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