Class: Cardboard::Field::Text

Inherits:
Cardboard::Field show all
Defined in:
app/models/cardboard/field/text.rb

Instance Attribute Summary

Attributes inherited from Cardboard::Field

#seeding

Instance Method Summary collapse

Methods inherited from Cardboard::Field

new_with_castnew, #required?, #type, #type=

Instance Method Details

#defaultObject



10
11
12
# File 'app/models/cardboard/field/text.rb', line 10

def default
  "What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum."
end

#valueObject



5
6
7
8
# File 'app/models/cardboard/field/text.rb', line 5

def value
  return nil unless self.value_uid 
  self.value_uid.split(/\n/).map { |i| ERB::Util.html_escape(i) }.join("<br />").html_safe
end