Method: ContentsCore::ItemArray#init

Defined in:
app/models/contents_core/item_array.rb

#initObject



45
46
47
48
49
50
51
52
# File 'app/models/contents_core/item_array.rb', line 45

def init
  unless self.data
    self.data_string = []
    self.data_hash = []
    self.data_text = []
  end
  self
end