Class: ComfortableMexicanSofa::Content::Tag::Number

Inherits:
Fragment show all
Defined in:
lib/comfortable_mexican_sofa/content/tags/number.rb

Overview

Tag for text content that is going to be rendered using number input

{{ cms:number identifier }}

Instance Attribute Summary

Attributes inherited from Fragment

#identifier, #namespace, #options, #renderable

Attributes inherited from ComfortableMexicanSofa::Content::Tag

#context, #params, #source

Instance Method Summary collapse

Methods inherited from Fragment

#content, #form_field_id, #fragment, #initialize, #render

Methods inherited from ComfortableMexicanSofa::Content::Tag

#allow_erb?, #content, #initialize, #nodes, #render

Constructor Details

This class inherits a constructor from ComfortableMexicanSofa::Content::Tag::Fragment

Instance Method Details

#form_field(object_name, view, index) {|input| ... } ⇒ Object

Yields:

  • (input)


8
9
10
11
12
13
14
# File 'lib/comfortable_mexican_sofa/content/tags/number.rb', line 8

def form_field(object_name, view, index)
  name    = "#{object_name}[fragments_attributes][#{index}][content]"
  options = { id: form_field_id, class: "form-control" }
  input   = view.send(:number_field_tag, name, content, options)

  yield input
end