Sequenzia/app/helpers/AdvertisementsHelper.php
Parziphal e2533565bc more changes to advertisements
added two new ad spots, bottom of post#index and post#show.
spots can be selectively activated in the booru config. by default,
only original spots are active.
2013-12-04 15:19:11 -05:00

25 lines
810 B
PHP
Executable File

<?php
class AdvertisementsHelper extends Rails\ActionView\Helper
{
public function print_advertisement($ad_type)
{
if (CONFIG()->can_see_ads(current_user())) {
$ad = Advertisement::random($ad_type);
if ($ad) {
if ($ad->html) {
return $ad->html;
} else {
return $this->linkTo(
$this->imageTag(
$ad->image_url,
['alt' => "Advertisement", 'width' => $ad->width, 'height' => $ad->height]
),
$this->redirectAdvertisementPath($ad),
['target' => '_blank']
);
}
}
}
}
}