# encoding: utf-8 class Location::State < ActiveRecord::Base # =====> R E W R I T E S <================================================================= # include GlobalizedName # =====> C O N S T A N T S <=============================================================== # # =====> A S S O Z I A T I O N S <========================================================= # belongs_to :country, class_name: "Location::Country", foreign_key: :country_id has_many :addresses, class_name: "Location::Address", foreign_key: :state_id has_many :cities, class_name: "Location::City", foreign_key: :state_id has_many :districts, through: :cities, source: :districts has_many :subdistricts, through: :districts, source: :subdistricts # =====> A T T R I B U T E S <============================================================= # # =====> V A L I D A T I O N <============================================================= # # =====> C A L L B A C K S <=============================================================== # # =====> S C O P E S <===================================================================== # # => default_scope { includes(:translations).with_translations(I18n.locale).order( 'location_state_translations.name ASC' ) } # =====> C L A S S - M E T H O D S <======================================================= # # =====> I N S T A N C E - M E T H O D S <================================================= # # =====> P R I V A T E ! <======================================================== # # # # # # # # # private end