You are here

function media_feeds_test_menu in Media Feeds 7

Implements hook_menu().

File

tests/media_feeds_test.module, line 11
Serve static files for Media Feeds testing.

Code

function media_feeds_test_menu() {
  $items['testing/media_feeds/feed.csv'] = array(
    'page callback' => 'media_feeds_test_feed',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  $items['testing/media_feeds/sample.png'] = array(
    'page callback' => 'media_feeds_test_image',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}