2014-06-04 04:15:58 +00:00
|
|
|
module PersonalLab
|
|
|
|
class Engine < ::Rails::Engine
|
|
|
|
initializer "personal_lab" do
|
|
|
|
OrbitApp.registration "PersonalLab",:type=> 'ModuleApp' do
|
|
|
|
module_label 'module_name.personal_lab'
|
|
|
|
base_url File.expand_path File.dirname(__FILE__)
|
2014-07-03 11:25:50 +00:00
|
|
|
personal_plugin :enable => true, :sort_number => '30', :app_name=>"Lab", :intro_app_name=>"PersonalLabIntro",:path=>"/plugin/personal_lab/profile",:front_path=>"/profile",:admin_path=>"/admin/labs",:i18n=>'module_name.personal_lab', :module_app_name=>'PersonalLab'
|
2014-06-04 04:15:58 +00:00
|
|
|
|
|
|
|
version "0.1"
|
|
|
|
organization "Rulingcom"
|
|
|
|
author "RD dep"
|
|
|
|
intro "I am intro"
|
|
|
|
update_info 'some update_info'
|
|
|
|
|
2014-07-03 11:25:50 +00:00
|
|
|
frontend_enabled
|
|
|
|
icon_class_no_sidebar "icons-user"
|
2014-06-04 04:15:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|