function sharethis_menu in ShareThis 7.2
Same name and namespace in other branches
- 5 sharethis.module \sharethis_menu()
- 6.2 sharethis.module \sharethis_menu()
- 6 sharethis.module \sharethis_menu()
- 7 sharethis.module \sharethis_menu()
Implements hook_menu().
File
- ./
sharethis.module, line 54 - A module that adds one of the ShareThis widget to your website.
Code
function sharethis_menu() {
$items['admin/config/services/sharethis'] = array(
'title' => 'ShareThis',
'description' => 'Choose the widget, button family, and services for using ShareThis to share content online.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'sharethis_configuration_form',
),
'access arguments' => array(
'administer sharethis',
),
'file' => 'sharethis.admin.inc',
);
return $items;
}