Sha256: 85480f00b7c335f40d9a3a4e555b0b4e7af749d594383f6a138cf9cef238dfa6

Contents?: true

Size: 1.3 KB

Versions: 6

Compression:

Stored size: 1.3 KB

Contents

class Language < ActiveRecord::Base
  attr_accessible :name, :native_name, :display_name, :iso_639_1, :iso_639_2,
    :iso_639_3, :note
  include MasterModel
  default_scope :order => "languages.position"
  # If you wish to change the field names for brevity, feel free to enable/modify these.
  # alias_attribute :iso1, :iso_639_1
  # alias_attribute :iso2, :iso_639_2
  # alias_attribute :iso3, :iso_639_3

  # Validations
  validates_presence_of :iso_639_1, :iso_639_2, :iso_639_3
  after_save :clear_available_languages_cache
  after_destroy :clear_available_languages_cache

  def self.all_cache
    if Rails.env == 'production'
      Rails.cache.fetch('language_all'){Language.all}
    else
      Language.all
    end
  end

  def clear_available_languages_cache
    Rails.cache.delete('language_all')
    Rails.cache.delete('available_languages')
  end

  def self.available_languages
    Language.where(:iso_639_1 => I18n.available_locales.map{|l| l.to_s}).order(:position)
  end
end

# == Schema Information
#
# Table name: languages
#
#  id           :integer         not null, primary key
#  name         :string(255)     not null
#  native_name  :string(255)
#  display_name :text
#  iso_639_1    :string(255)
#  iso_639_2    :string(255)
#  iso_639_3    :string(255)
#  note         :text
#  position     :integer
#

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
enju_biblio-0.0.6 app/models/language.rb
enju_biblio-0.0.5 app/models/language.rb
enju_biblio-0.0.4 app/models/language.rb
enju_biblio-0.0.3 app/models/language.rb
enju_biblio-0.0.2 app/models/language.rb
enju_biblio-0.0.1 app/models/language.rb