module Announcement class Engine < ::Rails::Engine initializer "announcement" do OrbitApp.registration "Announcement", :type => "ModuleApp" do module_label "announcement.announcement" base_url File.expand_path File.dirname(__FILE__) widget_methods ["widget"] taggable "Bulletin" categorizable side_bar do head_label_i18n 'announcement.announcement', icon_class: "icons-megaphone" active_for_controllers ({:private=>['announcements']}) head_link_path "admin_announcements_path" context_link 'announcement.all_articles', :link_path=>"admin_announcements_path" , :priority=>1, :active_for_action=>{:bulletins=>:index}, :available_for => [:all] context_link 'announcement.add_new', :link_path=>"new_admin_announcement_path" , :priority=>2, :active_for_action=>{:bulletins=>:new}, :available_for => [:sub_manager] # context_link 'announcement.categories', # :link_path=>"admin_announcement_path(get_module_app)" , # :priority=>3, # :active_for_category => 'Announcement', # :available_for => [:manager] # context_link 'tags', # :link_path=>"admin_announcement_path(module_app_id: get_module_app)" , # :priority=>4, # :active_for_tag => 'Announcement', # :available_for => [:manager] end end end end end