23 lines
1.0 KiB
Ruby
23 lines
1.0 KiB
Ruby
module PersonalVolunteer
|
|
class Engine < ::Rails::Engine
|
|
initializer "personal_volunteer" do
|
|
OrbitApp.registration "PersonalVolunteer",:type=> 'ModuleApp' do
|
|
module_label 'module_name.personal_volunteer'
|
|
base_url File.expand_path File.dirname(__FILE__)
|
|
personal_plugin :enable => true, :sort_number => '20', :app_name=>"VolunteerService", :intro_app_name=>"PersonalVolunteerIntro",:path=>"/plugin/personal_volunteer/profile",:front_path=>"/profile",:admin_path=>"/admin/volunteer_services",:i18n=>'module_name.personal_volunteer', :module_app_name=>'PersonalVolunteer', :one_line_title => true, :field_modifiable => true, :analysis => true, :analysis_path => "/admin/volunteer_services/analysis"
|
|
|
|
version "0.1"
|
|
desktop_enabled true
|
|
organization "Rulingcom"
|
|
author "RD dep"
|
|
intro "I am intro"
|
|
update_info 'some update_info'
|
|
|
|
frontend_enabled
|
|
data_count 1..30
|
|
icon_class_no_sidebar "icons-user"
|
|
end
|
|
end
|
|
end
|
|
end
|