You are here

function feeds_oai_pmh_menu in Feeds OAI-PMH Fetcher and Parser 6

Implementation of hook_menu().

File

./feeds_oai_pmh.module, line 52

Code

function feeds_oai_pmh_menu() {
  $items = array();
  $items['feeds_oai_pmh/set_ahah'] = array(
    'title' => 'Javascript Choice Form',
    'page callback' => 'feeds_oai_pmh_set_ahah',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}