function locale_test_menu

Implements hook_menu().

Return value

array

File

modules/locale/tests/locale_test.module, line 62

Code

function locale_test_menu() {
    $items = array();
    $items['locale_test_plural_format_page'] = array(
        'page callback' => 'locale_test_plural_format_page',
        'access callback' => TRUE,
        'type' => MENU_CALLBACK,
    );
    return $items;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.