pagecontent/lib/page_content/engine.rb

20 lines
585 B
Ruby

module PageContent
class Engine < ::Rails::Engine
initializer "page_content" do
OrbitApp.registration "PageContent", :type => "ModuleApp" do
module_label "page_content.page_content"
base_url File.expand_path File.dirname(__FILE__)
frontend_enabled
authorizable
side_bar do
head_label_i18n 'page_content.page', icon_class: "icons-newspaper"
available_for "users"
active_for_controllers (['admin/page_contents'])
head_link_path "admin_page_contents_path"
end
end
end
end
end