You are here

function mobile_tools_permission in Mobile Tools 7.3

Same name and namespace in other branches
  1. 7.2 mobile_tools.module \mobile_tools_permission()

Implements hook_permission().

File

./mobile_tools.module, line 44
Functionality to ease the creation of mixed device environments.

Code

function mobile_tools_permission() {
  return array(
    'administer mobile tools' => array(
      'title' => t('Administer Mobile Tools'),
      'description' => t('Administer the Mobile Tools module.'),
    ),
  );
}