Class: ActionView::Helpers::Tags::Label::LabelBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/action_view/helpers/tags/label.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(template_object, object_name, method_name, object, tag_value) ⇒ LabelBuilder

Returns a new instance of LabelBuilder.



8
9
10
11
12
13
14
# File 'lib/action_view/helpers/tags/label.rb', line 8

def initialize(template_object, object_name, method_name, object, tag_value)
  @template_object = template_object
  @object_name = object_name
  @method_name = method_name
  @object = object
  @tag_value = tag_value
end

Instance Attribute Details

#objectObject (readonly)

Returns the value of attribute object.



6
7
8
# File 'lib/action_view/helpers/tags/label.rb', line 6

def object
  @object
end

Instance Method Details

#translationObject



16
17
18
19
20
21
22
23
24
25
# File 'lib/action_view/helpers/tags/label.rb', line 16

def translation
  method_and_value = @tag_value.present? ? "#{@method_name}.#{@tag_value}" : @method_name

  content ||= Translator
    .new(object, @object_name, method_and_value, "helpers.label")
    .translate
  content ||= @method_name.humanize

  content
end