2014-06-04 03:55:13 +00:00
|
|
|
module PersonalJournal
|
|
|
|
class Engine < ::Rails::Engine
|
2015-01-09 07:30:13 +00:00
|
|
|
initializer "personal_journal" do
|
2023-05-25 15:15:42 +00:00
|
|
|
require File.expand_path('../../../app/models/journal_paper', __FILE__)
|
|
|
|
mp_id_maps = {}
|
|
|
|
JournalPaper.where({'member_profile_id.0'=> {'$exists'=> false}, 'member_profile_id' => {'$ne'=> nil}}).pluck(:id, :member_profile_id).each do |jpv|
|
|
|
|
mp_id_maps[jpv[1]] = [] if !mp_id_maps[jpv[1]]
|
|
|
|
mp_id_maps[jpv[1]] << jpv[0]
|
|
|
|
end
|
|
|
|
mp_id_maps.each do |mp_id, ids|
|
|
|
|
JournalPaper.where(:id.in => ids).update_all(member_profile_id: [mp_id])
|
|
|
|
end
|
|
|
|
OrbitApp.registration "PersonalJournal",:type=> 'ModuleApp' do
|
|
|
|
module_label 'module_name.journal_paper'
|
|
|
|
base_url File.expand_path File.dirname(__FILE__)
|
|
|
|
personal_plugin :enable => true, :sort_number => '5', :app_name=>"JournalPaper", :intro_app_name=>"JournalPaperlIntro",:path=>"/plugin/personal_journal/profile",:front_path=>"/profile",:admin_path=>"/admin/journal_papers/",:i18n=>'module_name.journal_paper', :module_app_name=>'PersonalJournal', :one_line_title => true, :field_modifiable => true, :analysis => true, :analysis_path => "/admin/journal_papers/analysis"
|
2014-06-04 03:55:13 +00:00
|
|
|
|
2023-05-25 15:15:42 +00:00
|
|
|
begin
|
|
|
|
page_custom_option({year: '<%= select_tag "#{f.object_name}[custom_data_field][year][]", options_for_select((1930...(DateTime.now.year+5)).to_a.reverse, (f.object.custom_data_field[:year].to_a rescue [])), {multiple: true} %>'})
|
|
|
|
page_custom_option({journal_type: '<% JournalType.all.each do |journal_type| %><label><%= check_box_tag "#{f.object_name}[custom_data_field][journal_type][]", journal_type.id.to_s, (f.object.custom_data_field[:journal_type].include?(journal_type.id.to_s) rescue false) %><%= journal_type.title %></label><% end %>'})
|
|
|
|
rescue => e
|
|
|
|
puts ['there_was_no_page_custom_option',e]
|
|
|
|
end
|
|
|
|
version "0.1"
|
|
|
|
desktop_enabled true
|
|
|
|
organization "Rulingcom"
|
|
|
|
author "RD dep"
|
|
|
|
intro "I am intro"
|
|
|
|
update_info 'some update_info'
|
|
|
|
frontend_enabled
|
|
|
|
icon_class_no_sidebar "icons-user"
|
|
|
|
data_count 1..10
|
|
|
|
end
|
2014-06-04 03:55:13 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-01-09 07:30:13 +00:00
|
|
|
|