例: admin/structure/example
		
/**
 * Implements hook_menu().
 */
function YOUR_MODULE_menu()
{
    $items['admin/structure/example']=array(
        'title' => t('Example Admin Page'),           // これはリンク名
        'description' => t('The example page of a test'),  // これはリンクの説明
        'page callback' => 'example_page',       // これは管理ページのコールバック
        'access arguments' => array('administer chinese vocabulary'),
    );
    return $items;
}
// 管理ページのコールバック
function example_page(){
  //管理ページの内容を省略し、メッセージだけの表示
    return t('Welcome to the example page');
}