Orbit/vendor/built_in_modules/feed/init.rb

25 lines
695 B
Ruby

module Feeds
OrbitApp.registration "Feed",:type=> 'ModuleApp' do
module_label 'feed.feed'
base_url File.expand_path File.dirname(__FILE__)
# personal_plugin :enable => true,:path=>"panel/location/plugin/profile",:i18n=>'admin.location'
version "0.1"
organization "Rulingcom"
author "RD dep"
intro "I am intro"
update_info 'some update_info'
#enable_frontend true
side_bar do
head_label_i18n 'feed.channel', :icon_class=>"icon-plus"
available_for [:admin,:guest,:manager,:sub_manager]
active_for_controllers ({:private=>['feeds']})
head_link_path "panel_feed_back_end_feeds_path"
end
end
end