2012-09-24 03:43:48 +00:00
|
|
|
module Announcement
|
|
|
|
OrbitApp.registration "Announcement",:type=> 'ModuleApp' do
|
|
|
|
|
|
|
|
base_url File.expand_path File.dirname(__FILE__)
|
2012-11-20 07:56:52 +00:00
|
|
|
personal_plugin :enable => true,:path=>"panel/announcement/plugin/profile",:i18n=>'admin.announcement'
|
2012-09-24 03:43:48 +00:00
|
|
|
|
2012-11-20 07:56:52 +00:00
|
|
|
side_bar do
|
|
|
|
head_label_i18n 'admin.announcement',:icon_class=>"icons-announcement"
|
|
|
|
available_for [:admin,:guest,:manager,:sub_manager]
|
|
|
|
active_for_controllers ({:private=>['bulletins', 'bulletin_categorys', 'approvals','tags']})
|
|
|
|
active_for_object_auth ['BulletinCategory']
|
2012-09-24 03:43:48 +00:00
|
|
|
|
2012-11-20 07:56:52 +00:00
|
|
|
head_link_path "panel_announcement_back_end_bulletins_path"
|
2012-09-24 03:43:48 +00:00
|
|
|
|
2012-11-20 07:56:52 +00:00
|
|
|
context_link 'announcement.all_articles',
|
|
|
|
:link_path=>"panel_announcement_back_end_bulletins_path" ,
|
|
|
|
:priority=>1,
|
|
|
|
:active_for_action=>{:bulletins=>:index}
|
|
|
|
|
|
|
|
context_link 'announcement.add_new',
|
|
|
|
:link_path=>"new_panel_announcement_back_end_bulletin_path" ,
|
|
|
|
:priority=>2,
|
|
|
|
:active_for_action=>{:bulletins=>:new},
|
|
|
|
:available_for => [:manager]
|
|
|
|
|
|
|
|
context_link 'announcement.categories',
|
|
|
|
:link_path=>"panel_announcement_back_end_bulletin_categorys_path" ,
|
|
|
|
:priority=>3,
|
|
|
|
:active_for_action=>{:bulletin_categorys=>:index},
|
|
|
|
:available_for => [:manager]
|
2012-09-13 10:31:44 +00:00
|
|
|
|
2012-09-24 03:43:48 +00:00
|
|
|
|
2012-11-20 07:56:52 +00:00
|
|
|
context_link 'announcement.tags',
|
|
|
|
:link_path=>"panel_announcement_back_end_tags_path" ,
|
|
|
|
:priority=>4,
|
|
|
|
:active_for_action=>{:bulletin_categorys=>:index},
|
|
|
|
:available_for => [:manager]
|
2012-09-13 10:31:44 +00:00
|
|
|
|
2012-11-20 07:56:52 +00:00
|
|
|
context_link 'announcement.approval_setting',
|
|
|
|
:link_path=>"panel_announcement_back_end_approval_setting_path" ,
|
|
|
|
:priority=>5,
|
|
|
|
:active_for_object_auth => 'BulletinCategory',
|
|
|
|
:available_for => [:manager]
|
2012-09-13 10:31:44 +00:00
|
|
|
|
2012-11-20 07:56:52 +00:00
|
|
|
context_link 'admin.module.authorization',
|
|
|
|
:link_path=>"admin_module_app_manager_auth_proc_path(ModuleApp.first(conditions: {title: 'Announcement'}))",
|
|
|
|
:priority=>6,
|
|
|
|
:active_for_app_auth => 'Announcement',
|
|
|
|
:available_for => [:manager]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|