Skip to content

Instantly share code, notes, and snippets.

@wesruv
Created May 24, 2015 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesruv/57a622a4056210b83a88 to your computer and use it in GitHub Desktop.
Save wesruv/57a622a4056210b83a88 to your computer and use it in GitHub Desktop.
/**
* Implements hook_menu().
*/
function library_twitter_bootstrap_menu() {
$items['admin/config/library/twitter-bootstrap'] = array(
'title' => 'Twitter Bootstrap Settings',
'description' => 'Configure Twitter Bootstrap settings.',
'page callback' => 'backdrop_get_form',
'page arguments' => array('library_twitter_bootstrap_settings_form'),
'access arguments' => array('administer site configuration'),
'file' => 'library_twitter_bootstrap.admin.inc',
);
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment