/[drupal]/contributions/modules/languageicons/languageicons.module
ViewVC logotype

Diff of /contributions/modules/languageicons/languageicons.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.3, Sat Oct 11 13:36:12 2008 UTC revision 1.4, Mon Feb 2 20:10:33 2009 UTC
# Line 1  Line 1 
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
# Line 47  function languageicons_help($path, $arg) Line 47  function languageicons_help($path, $arg)
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(

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.2