function tweetbutton_menu in Tweet Button 8
Same name and namespace in other branches
- 6 tweetbutton.module \tweetbutton_menu()
- 7.2 tweetbutton.module \tweetbutton_menu()
- 7 tweetbutton.module \tweetbutton_menu()
Implementation of hook_menu()
File
- ./
tweetbutton.module, line 69 - Adds block with tweet and follow buttons.
Code
function tweetbutton_menu() {
$items = array();
$items['admin/config/services/tweetbutton'] = array(
'title' => 'Tweet Button',
'description' => 'Configure the look and behavior of the Tweet Button appears on the site.',
'route_name' => 'tweetbutton.settings',
);
return $items;
}