starting ad_banner auth

This commit is contained in:
Matthew K. Fu JuYuan 2012-05-15 09:57:05 +08:00
parent 2cd67356a5
commit 0a9f0bcc45
5 changed files with 17 additions and 3 deletions

View File

@ -12,5 +12,15 @@ module Admin::AdBannerHelper
printable_ad_images.shuffle!
end
def show_ad_banner_permission_link(ad_banner)
type = 'edit'
oa = ad_banner.get_object_auth_by_title(type)
if oa.nil?
ad_banner.object_auths.new(title: type ).save
oa = ad_banner.get_object_auth_by_title(type)
end
# link_to t('announcement.bulletin.cate_auth'), edit_admin_object_auth_path(oa)
link_to t('admin.ad.cate_auth'),admin_object_auth_ob_auth_path(oa)
end
end

View File

@ -1,9 +1,9 @@
class AdBanner
include OrbitCoreLib::ObjectAuthable
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::MultiParameterAttributes
include OrbitCoreLib::ObjectAuthable
field :title
field :transition_msec,type: Integer
field :ad_fx #TODO Design should explain

View File

@ -20,6 +20,9 @@
<ul class="clear">
<%= render :partial => "ad_image_update", :collection => ad_banner_tab.ad_images,:as => :ad_image,:locals=>{:ad_banner => ad_banner_tab} %>
</ul>
<% if is_manager? || is_admin? %>
<%= show_ad_banner_permission_link ad_banner_tab%>
<% end -%>
<%#= render :partial => 'new_add_banner_file', :object => ad_banner_tab.ad_images.build, :locals => { :field_name => "new_ad_images[]", :f => f, :classes => "r_destroy" } %>
</div>
<% end -%>

View File

@ -76,6 +76,7 @@ zh_tw:
sec_place_holder: 3秒請輸入3
ab_fx: 轉場特效
all_banners: 輪播清單
cate_auth: 分類授權
banner_best_size: Banner 尺寸
new_banner: 新增輪播
new_image: 新增橫幅

View File

@ -2,7 +2,7 @@ module Panel::Announcement::BackEnd::BulletinsHelper
def show_approval_link(bulletin)
by_bulletin = (!bulletin.is_expired? and !bulletin.is_checked?)
by_user = (bulletin.bulletin_category.authed_users('fact_check').include?(current_user) or is_manager?)
by_user = (bulletin.bulletin_category.authed_users('fact_check').include?(current_user) or is_manager? or is_admin?)
by_bulletin and by_user
end