You are here

function evoc_test_menu in RDF Extensions 7.2

Implements hook_menu().

File

evoc/tests/evoc_test.module, line 11
Test vocabulary import.

Code

function evoc_test_menu() {
  $items['evoc_test/vocabulary_rdf_xml'] = array(
    'title' => 'RDF/XML vocabulary',
    'description' => 'Fake RDF/XML vocabulary for import testing.',
    'page callback' => '_vocabulary_rdf_xml',
    'access callback' => TRUE,
  );
  $items['evoc_test/vocabulary_n3'] = array(
    'title' => 'N3 vocabulary',
    'description' => 'Fake N3 vocabulary for import testing.',
    'page callback' => '_vocabulary_n3',
    'access callback' => TRUE,
  );
  return $items;
}