function oauth2_client_menu in OAuth2 Client 7.2
Same name and namespace in other branches
- 7 oauth2_client.module \oauth2_client_menu()
Implements hook_menu().
File
- ./
oauth2_client.module, line 52 - Provides OAuth2 client functionality.
Code
function oauth2_client_menu() {
$items = array();
$items['oauth2/authorized'] = array(
'page callback' => 'oauth2_client_authorized',
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
return $items;
}