function ad_image_node_view in Advertisement 6.2
Same name and namespace in other branches
- 5.2 image/ad_image.module \ad_image_node_view()
- 5 image/ad_image.module \ad_image_node_view()
- 6.3 image/ad_image.module \ad_image_node_view()
- 6 image/ad_image.module \ad_image_node_view()
Adapi helper function for displaying ad itself.
1 call to ad_image_node_view()
- ad_image_adapi in image/
ad_image.module - Implementation of hook_adapi().
File
- image/
ad_image.module, line 599 - Enhances the ad module to support banner ads.
Code
function ad_image_node_view(&$node) {
$node->content['ad'] = array(
'#value' => preg_replace('&@HOSTID___&', '0', ad_image_display_ad($node)),
'#weight' => -1,
);
if (!empty($node->url)) {
$link = t('Links to !url.', array(
'!url' => $node->url,
));
$link = check_plain($link, $node->format, FALSE);
$node->content['ad-link'] = array(
'#value' => "<div class=\"links-to\">{$link}</div>",
'#weight' => 0,
);
}
}