You are here

function bootstrap_library_menu in Bootstrap Library 7

Implementation of hook_menu().

File

./bootstrap_library.module, line 81
Primarily Drupal hooks.

Code

function bootstrap_library_menu() {

  // Admin settings.
  $items['admin/config/development/bootstrap_library'] = array(
    'title' => 'Boostrap Library',
    'description' => 'Configures Boostrap Library module',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'bootstrap_library_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
  );
  return $items;
}