You are here

function _ad_text_node_view in Advertisement 7

Adapi helper function for displaying ad itself.

1 call to _ad_text_node_view()
ad_text_adapi in text/ad_text.module
Implementation of hook_adapi().

File

text/ad_text.module, line 313
Enhances the ad module to support static text ads.

Code

function _ad_text_node_view(&$node) {
  $node->content['ad'] = array(
    '#value' => theme('ad_box', array(
      'title' => '',
      'content' => preg_replace('&@HOSTID___&', '0', ad_text_display_ad($node)),
    )),
    '#weight' => -1,
  );
  if (!empty($node->url)) {
    $link = t('Links to !url.', array(
      '!url' => $node->url,
    ));
    $link = check_plain($link);
    $node->content['ad-link'] = array(
      '#value' => "<div class=\"links-to\">{$link}</div>",
      '#weight' => 1,
    );
  }
}