Module: FatFreeCRM::Fields::InstanceMethods

Defined in:
lib/fat_free_crm/fields.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_id, *args, &block) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/fat_free_crm/fields.rb', line 77

def method_missing(method_id, *args, &block)
  if method_id.to_s.match?(/\Acf_.*[^=]\Z/)
    # Refresh columns and try again.
    self.class.reset_column_information
    # If new record, create new object from class, else reload class
    object = new_record? ? self.class.new : (reload && self)
    # ensure serialization is setup if needed
    self.class.serialize_custom_fields!
    # Try again if object now responds to method, else return nil
    object.respond_to?(method_id) ? object.send(method_id, *args) : nil
  else
    super
  end
end

Instance Method Details

#assign_attributes(new_attributes) ⇒ Object



68
69
70
71
72
73
74
75
# File 'lib/fat_free_crm/fields.rb', line 68

def assign_attributes(new_attributes)
  super
# If attribute is unknown, a new custom field may have been added.
# Refresh columns and try again.
rescue ActiveRecord::UnknownAttributeError
  self.class.reset_column_information
  super
end

#custom_fields_validatorObject

run custom field validations on this object




64
65
66
# File 'lib/fat_free_crm/fields.rb', line 64

def custom_fields_validator
  field_groups.map(&:fields).flatten.each { |f| f.custom_validator(self) }
end

#field_groupsObject



57
58
59
60
# File 'lib/fat_free_crm/fields.rb', line 57

def field_groups
  field_groups = self.class.field_groups
  respond_to?(:tag_ids) ? field_groups.with_tags(tag_ids) : field_groups
end