function addtohomescreen_menu in Add to homescreen 7
Implements hook_menu().
File
- ./
addtohomescreen.module, line 59 - Integrates the 'Add to homescreen' library with Drupal.
Code
function addtohomescreen_menu() {
$items['admin/config/user-interface/addtohomescreen'] = array(
'title' => 'Add to homescreen',
'description' => 'Configuration for the Add to homescreen library',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'addtohomescreen_settings',
),
'access arguments' => array(
'administer add to homescreen',
),
'file' => 'addtohomescreen.admin.inc',
);
return $items;
}