You are here

function ad_menu_load in Advertisement 7

Menu loader callback. Load an ad node if the given nid is an ad.

File

./ad.module, line 1341

Code

function ad_menu_load($nid) {
  if (!is_numeric($nid)) {
    return FALSE;
  }
  $node = node_load($nid);
  if (!isset($node->type) || $node->type != 'ad') {
    return FALSE;
  }
  return $node;
}