You are here

function mobile_tools_permission in Mobile Tools 7.2

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

Implements hook_permission().

File

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

Code

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