Class: GOVUKDesignSystemFormBuilder::Elements::File
- Includes:
- Traits::Error, Traits::HTMLAttributes, Traits::HTMLClasses, Traits::Hint, Traits::Label, Traits::Supplemental
- Defined in:
- lib/govuk_design_system_formbuilder/elements/file.rb
Instance Method Summary collapse
- #html ⇒ Object
-
#initialize(builder, object_name, attribute_name, hint:, label:, caption:, form_group:, **kwargs, &block) ⇒ File
constructor
A new instance of File.
Methods included from Traits::HTMLClasses
Methods included from Traits::HTMLAttributes
Methods included from Traits::Supplemental
Methods included from Traits::Hint
Methods included from Traits::Error
Methods inherited from Base
Constructor Details
#initialize(builder, object_name, attribute_name, hint:, label:, caption:, form_group:, **kwargs, &block) ⇒ File
Returns a new instance of File.
13 14 15 16 17 18 19 20 21 |
# File 'lib/govuk_design_system_formbuilder/elements/file.rb', line 13 def initialize(builder, object_name, attribute_name, hint:, label:, caption:, form_group:, **kwargs, &block) super(builder, object_name, attribute_name, &block) @label = label @caption = @hint = hint @html_attributes = kwargs @form_group = form_group end |
Instance Method Details
#html ⇒ Object
23 24 25 26 27 |
# File 'lib/govuk_design_system_formbuilder/elements/file.rb', line 23 def html Containers::FormGroup.new(*bound, **@form_group).html do safe_join([label_element, supplemental_content, hint_element, error_element, file]) end end |