2012-12-05 10:35:58 +00:00
|
|
|
module Calendar
|
|
|
|
OrbitApp.registration "Calendar",:type=> 'ModuleApp' do
|
2013-03-12 10:13:48 +00:00
|
|
|
module_label 'calendar.calendar'
|
2012-12-05 10:35:58 +00:00
|
|
|
base_url File.expand_path File.dirname(__FILE__)
|
|
|
|
# personal_plugin :enable => true,:path=>"panel/calendar/plugin/profile",:i18n=>'admin.calendar'
|
|
|
|
|
|
|
|
version "0.1"
|
|
|
|
organization "Rulingcom"
|
|
|
|
author "RD dep"
|
|
|
|
intro "I am intro"
|
|
|
|
update_info 'some update_info'
|
|
|
|
|
|
|
|
side_bar do
|
2013-03-12 10:13:48 +00:00
|
|
|
head_label_i18n 'calendar.calendar',:icon_class=>"icons-calendar"
|
2012-12-05 10:35:58 +00:00
|
|
|
available_for [:admin,:guest,:manager,:sub_manager]
|
|
|
|
active_for_controllers ({:private=>['cals','calendar_categories'],:public=>['panel/calendar/back_end/tags']})
|
|
|
|
|
|
|
|
|
|
|
|
head_link_path "panel_calendar_back_end_cals_path"
|
|
|
|
|
2013-03-12 10:13:48 +00:00
|
|
|
context_link 'categories',
|
2012-12-05 10:35:58 +00:00
|
|
|
:link_path=>"new_panel_calendar_back_end_cal_path" ,
|
|
|
|
:priority=>1,
|
|
|
|
:active_for_action=>{:cals=>:new},
|
|
|
|
:available_for => [:manager]
|
|
|
|
|
|
|
|
context_link 'tags',
|
2013-04-26 03:18:57 +00:00
|
|
|
:link_path=>"admin_tags_path(:module_app_id => ModuleApp.first(conditions: {title: 'Calendar'}))" ,
|
2012-12-05 10:35:58 +00:00
|
|
|
:priority=>4,
|
|
|
|
# :active_for_action=>{:bulletin_categorys=>:index},
|
|
|
|
:available_for => [:manager]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|