You are here

function adsense_adstxt_menu in Google AdSense integration 7

Implements hook_menu().

File

adstxt/adsense_adstxt.module, line 14
Displays Google AdSense ads on Drupal pages.

Code

function adsense_adstxt_menu() {
  $items = array();
  $items['ads.txt'] = array(
    'title' => 'ads.txt',
    'page callback' => 'adsense_adstxt_controller',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
    'file' => 'adsense_adstxt.pages.inc',
  );
  return $items;
}