Method: Formotion::Form#to_hash

Defined in:
lib/formotion/form/form.rb

#to_hashObject

A complete hashification of the Form EX

> ‘My Title’, id: ‘anything’



158
159
160
161
162
163
164
165
166
# File 'lib/formotion/form/form.rb', line 158

def to_hash
  # super handles all of the ::PROPERTIES
  h = super
  h[:sections] = self.sections.collect { |section|
    section.to_hash
  }
  recursive_delete_nil(h)
  h
end