Sha256: d43af0002217d49dd6125f6311912d566f781b3cd19735cb9e8bc5a0c4c01233

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

class StandardFormBuilder < AbstractFormBuilder

  # text_field_block(:username, { :class => 'long' }, { :class => 'wide-label' })
  # text_area_block(:username, { :class => 'long' }, { :class => 'wide-label' })
  # password_field_block(:username, { :class => 'long' }, { :class => 'wide-label' })
  # file_field_block(:username, { :class => 'long' }, { :class => 'wide-label' })
  (self.field_types - [:hidden_field]).each do |field_type|
    class_eval <<-EOF
    def #{field_type}_block(field, options={}, label_options={})
      label_options.reverse_merge!(:caption => options.delete(:caption)) if options[:caption]
      field_html = label(field, label_options)
      field_html << #{field_type}(field, options)
      @template.content_tag(:p, field_html)
    end
    EOF
  end

  # submit_block("Update")
  def submit_block(caption, options={})
    submit_html = self.submit(caption, options)
    @template.content_tag(:p, submit_html)
  end

  # image_submit_block("submit.png")
  def image_submit_block(source, options={})
    submit_html = self.image_submit(source, options)
    @template.content_tag(:p, submit_html)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sinatra_more-0.2.2 lib/sinatra_more/markup_plugin/form_builder/standard_form_builder.rb
sinatra_more-0.2.1 lib/sinatra_more/markup_plugin/form_builder/standard_form_builder.rb