function twitter_post_menu in Twitter 7.5
Same name and namespace in other branches
- 6.5 twitter_post/twitter_post.module \twitter_post_menu()
- 6.3 twitter_post/twitter_post.module \twitter_post_menu()
- 6.4 twitter_post/twitter_post.module \twitter_post_menu()
- 7.3 twitter_post/twitter_post.module \twitter_post_menu()
- 7.4 twitter_post/twitter_post.module \twitter_post_menu()
Implements hook_menu().
File
- twitter_post/
twitter_post.module, line 10 - Hook implementations for twitter_post module.
Code
function twitter_post_menu() {
$items['admin/config/services/twitter/post'] = array(
'title' => 'Post',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'twitter_post_admin_settings',
),
'access arguments' => array(
'administer twitter',
),
'file' => 'twitter_post.pages.inc',
'type' => MENU_LOCAL_TASK,
'weight' => 3,
);
return $items;
}