class Lab include Mongoid::Document include Mongoid::Timestamps include OrbitModel::Status include Slug belongs_to :member_profile field :lab_title, :as=>:slug_title, localize: true field :location, localize: true field :participating_professor, localize: true field :participating_student, localize: true field :year field :language field :keywords field :extension_no field :research_direction field :facility field :url field :note field :create_user_id, :type => BSON::ObjectId field :update_user_id, :type => BSON::ObjectId paginates_per 10 has_many :lab_files, :autosave => true, :dependent => :destroy accepts_nested_attributes_for :lab_files, :allow_destroy => true before_validation :add_http def get_plugin_data(fields_to_show) plugin_datas = [] fields_to_show.each do |field| plugin_data = self.get_plugin_field_data(field) rescue nil next if plugin_data.blank? or plugin_data['value'].blank? plugin_datas << plugin_data end plugin_datas end def get_plugin_field_data(field) case field when "language" value = I18n.t(self.language) rescue "" when "file" files = [] self.lab_files.each do |lab_file| url = lab_file.file.url title = (lab_file.title.blank? ? File.basename(lab_file.file.path) : lab_file.title) files << "