You are here

function classified_test_menu in Classified Ads 7.3

Implements hook_menu().

Module only creates 2 terms, tid 1 and 2, so 3 is invalid.

File

tests/classified_test.module, line 13
Helper module for the Classified ads tests.

Code

function classified_test_menu() {
  $items['classified-test/invalid-term-path'] = array(
    'title' => 'Invalid Taxonomy path',
    'page callback' => 'classified_test_page_invalid_term_path',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}