Class: Occams::Content::Tag::Text
- Inherits:
-
Fragment
- Object
- Occams::Content::Tag
- Fragment
- Occams::Content::Tag::Text
- Defined in:
- lib/occams/content/tags/text.rb
Overview
Tag for text content that is going to be rendered using text input
{{ cms:text identifier }}
Instance Attribute Summary
Attributes inherited from Fragment
#identifier, #namespace, #options, #renderable
Attributes inherited from Occams::Content::Tag
Instance Method Summary collapse
Methods inherited from Fragment
#content, #form_field_id, #fragment, #initialize, #render
Methods inherited from Occams::Content::Tag
#allow_erb?, #content, #initialize, #nodes, #render
Constructor Details
This class inherits a constructor from Occams::Content::Tag::Fragment
Instance Method Details
#form_field(object_name, view, index) {|input| ... } ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/occams/content/tags/text.rb', line 7 def form_field(object_name, view, index) name = "#{object_name}[fragments_attributes][#{index}][content]" = { id: form_field_id, class: 'form-control' } input = view.send(:text_field_tag, name, content, ) yield input end |