function addtohomescreen_permission in Add to homescreen 7
Implements hook_permission().
File
- ./
addtohomescreen.module, line 48 - Integrates the 'Add to homescreen' library with Drupal.
Code
function addtohomescreen_permission() {
return array(
'administer add to homescreen' => array(
'title' => t('Administer Add to homescreen'),
),
);
}