Skip to content

Instantly share code, notes, and snippets.

@dmouse
Created August 22, 2013 18:53
Show Gist options
  • Select an option

  • Save dmouse/6311262 to your computer and use it in GitHub Desktop.

Select an option

Save dmouse/6311262 to your computer and use it in GitHub Desktop.
Drupal 8, OAuth sample hook_menu
<?php
function oauth_menu() {
//...
$menu['admin/config/services/oauth'] = array(
'title' => 'OAuth',
'description' => 'Settings for OAuth',
'route_name' => 'oauth_admin_form',
'type' => MENU_NORMAL_ITEM,
);
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment