personal-patent/lib/personal_patent/engine.rb

23 lines
887 B
Ruby
Raw Normal View History

2014-06-04 07:30:44 +00:00
module PersonalPatent
class Engine < ::Rails::Engine
initializer "personal_patent" do
OrbitApp.registration "PersonalPatent",:type=> 'ModuleApp' do
module_label 'module_name.personal_patent'
base_url File.expand_path File.dirname(__FILE__)
2016-06-04 10:36:31 +00:00
personal_plugin :enable => true, :sort_number => '35', :app_name=>"Patent", :intro_app_name=>"PersonalPatentIntro",:path=>"/plugin/personal_patent/profile",:front_path=>"/profile",:admin_path=>"/admin/patents",:i18n=>'module_name.personal_patent', :module_app_name=>"PersonalPatent", :field_modifiable => true, :analysis => true, :analysis_path => "/admin/patents/analysis"
2014-06-04 07:30:44 +00:00
version "0.1"
2014-12-04 07:41:18 +00:00
desktop_enabled true
2014-06-04 07:30:44 +00:00
organization "Rulingcom"
author "RD dep"
intro "I am intro"
update_info 'some update_info'
2016-04-06 10:52:57 +00:00
frontend_enabled
icon_class_no_sidebar "icons-user"
data_count 1..10
2014-06-04 07:30:44 +00:00
end
end
end
end