You are here

function jdrupal_menu in jDrupal 8.0.x

Implements hook_menu().

File

./jdrupal.module, line 29
Contains jdrupal.module..

Code

function jdrupal_menu() {
  $items['admin/config/services/jdrupal'] = array(
    'title' => 'jDrupal',
    'description' => 'The jDrupal config page.',
    'route_name' => 'jdrupal.jdrupal_config',
  );
  return $items;
}