2012-12-05 10:35:58 +00:00
|
|
|
module Archive
|
|
|
|
OrbitApp.registration "Archive",:type=> 'ModuleApp' do
|
|
|
|
module_label 'miss_module_i18n.archive'
|
|
|
|
base_url File.expand_path File.dirname(__FILE__)
|
2012-12-25 03:26:23 +00:00
|
|
|
|
2012-12-24 03:55:33 +00:00
|
|
|
personal_plugin :enable => true,:path=>"panel/archive/plugin/profile",:i18n=>'miss_plugin_i18n.archive'
|
2012-12-25 03:26:23 +00:00
|
|
|
# =======
|
|
|
|
# personal_plugin :enable => true,:path=>"panel/archive/plugin/profile",:i18n=>'admin.archive'
|
|
|
|
# >>>>>>> 858e942da234fffa3053a995231f2b0d9eee43d1
|
2012-12-05 10:35:58 +00:00
|
|
|
|
|
|
|
version "0.1"
|
|
|
|
organization "Rulingcom"
|
|
|
|
author "RD dep"
|
|
|
|
intro "I am intro"
|
|
|
|
update_info 'some update_info'
|
|
|
|
|
|
|
|
front_end do
|
|
|
|
app_page 'archive_files'
|
|
|
|
end
|
|
|
|
|
|
|
|
widgets do
|
|
|
|
# default_widget do
|
|
|
|
# query 'Bulletin.all'
|
|
|
|
# image :image
|
|
|
|
# end
|
|
|
|
|
|
|
|
# categories_query 'BulletinCategory.all'
|
|
|
|
# tags_query 'ArchiveTag.all'
|
2013-01-29 12:33:40 +00:00
|
|
|
customize_widget "archive_files" do
|
|
|
|
widget_i18n "archive.widget.archive_files"
|
|
|
|
style []
|
|
|
|
end
|
2012-12-05 10:35:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
side_bar do
|
|
|
|
head_label_i18n 'miss_module_i18n.archive',:icon_class=>"icons-archive"
|
|
|
|
available_for [:admin,:guest,:manager,:sub_manager]
|
2012-12-07 04:40:47 +00:00
|
|
|
active_for_controllers ({:private=>['archive_file_categorys','archive_files'],:public=>['panel/archive/back_end/tags']})
|
2012-12-05 10:35:58 +00:00
|
|
|
active_for_object_auth ['BulletinCategory']
|
|
|
|
|
|
|
|
head_link_path "panel_archive_back_end_archive_files_path"
|
|
|
|
|
|
|
|
context_link 'miss_module_i18n._archive.all',
|
|
|
|
:link_path=>"panel_archive_back_end_archive_files_path" ,
|
|
|
|
:priority=>1,
|
2012-12-07 04:40:47 +00:00
|
|
|
:active_for_action=>{:archive_files=>:index},
|
2012-12-05 10:35:58 +00:00
|
|
|
:available_for => [:all]
|
|
|
|
|
|
|
|
context_link 'add',
|
|
|
|
:link_path=>"new_panel_archive_back_end_archive_file_path" ,
|
|
|
|
:priority=>2,
|
2012-12-07 04:40:47 +00:00
|
|
|
:active_for_action=>{:archive_files=>:new},
|
2012-12-05 10:35:58 +00:00
|
|
|
:available_for => [:admin]
|
|
|
|
|
|
|
|
context_link 'categories',
|
|
|
|
:link_path=>"panel_archive_back_end_archive_file_categorys_path" ,
|
|
|
|
:priority=>3,
|
|
|
|
:active_for_action=>{:archive_file_categorys=>:index},
|
|
|
|
:available_for => [:manager]
|
|
|
|
|
|
|
|
context_link 'tags',
|
|
|
|
:link_path=>"panel_archive_back_end_tags_path" ,
|
|
|
|
:priority=>4,
|
|
|
|
# :active_for_action=>{:bulletin_categorys=>:index},
|
|
|
|
:available_for => [:admin]
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|