| 1 |
<?php |
<?php |
| 2 |
// $Id: languageicons.module,v 1.2.2.3 2008/08/16 13:16:24 freso Exp $ |
// $Id: languageicons.module,v 1.3 2008/10/11 13:36:12 freso Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 47 |
* Implementation of hook_menu(). |
* Implementation of hook_menu(). |
| 48 |
*/ |
*/ |
| 49 |
function languageicons_menu() { |
function languageicons_menu() { |
| 50 |
$items['admin/settings/language/configure/options'] = array( |
// Direct copy of the Configure tab from locale module to |
| 51 |
'title' => 'Configure', |
// make space for the "Localization sharing" tab below. |
| 52 |
'weight' => 10, |
$items['admin/settings/language/configure/language'] = array( |
| 53 |
'type' => MENU_DEFAULT_LOCAL_TASK, |
'title' => 'Language negotiation', |
| 54 |
|
'page callback' => 'locale_inc_callback', |
| 55 |
|
'page arguments' => array('drupal_get_form', 'locale_languages_configure_form'), |
| 56 |
'access arguments' => array('administer languages'), |
'access arguments' => array('administer languages'), |
| 57 |
|
'weight' => -10, |
| 58 |
|
'type' => MENU_DEFAULT_LOCAL_TASK, |
| 59 |
); |
); |
| 60 |
|
|
| 61 |
$items['admin/settings/language/configure/icons'] = array( |
$items['admin/settings/language/configure/icons'] = array( |