Module: Forme::Rails

Defined in:
lib/forme/rails.rb

Defined Under Namespace

Modules: ERB Classes: Form

Constant Summary collapse

HIDDEN_TAGS =
[]

Class Method Summary collapse

Class Method Details

.add_hidden_tag(&block) ⇒ Object

Add a hidden tag proc that will be used for all forms created via Forme::Rails::ERB#form. The block is yielded the Forme::Tag object for the form tag. The block should return either nil if hidden tag should be added, or a Forme::Tag object (or an array of them), or a hash with keys specifying the name of the tags and the values specifying the values of the tags .



15
16
17
# File 'lib/forme/rails.rb', line 15

def self.add_hidden_tag(&block)
  HIDDEN_TAGS << block
end