mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
branch : moe extra : convert_revision : svn%3A2d28d66d-8d94-df11-8c86-00306ef368cb/trunk/moe%405
11 lines
490 B
Ruby
11 lines
490 B
Ruby
module AdvertisementHelper
|
|
def print_advertisement(ad_type)
|
|
if CONFIG["can_see_ads"].call(@current_user)
|
|
ad = Advertisement.find(:first, :conditions => ["ad_type = ? AND status = 'active'", ad_type], :order => "random()")
|
|
content_tag("div", link_to(image_tag(ad.image_url, :alt => "Advertisement", :width => ad.width, :height => ad.height), :controller => "advertisement", :action => "redirect_ad", :id => ad.id), :style => "margin-bottom: 1em;")
|
|
else
|
|
""
|
|
end
|
|
end
|
|
end
|