Flowdock
method

to_label_tag

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionView::Helpers::InstanceTag
to_label_tag(text = nil, options = {}) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/helpers/form_helper.rb, line 758
      def to_label_tag(text = nil, options = {})
        options = options.stringify_keys
        tag_value = options.delete("value")
        name_and_id = options.dup
        name_and_id["id"] = name_and_id["for"]
        add_default_name_and_id_for_value(tag_value, name_and_id)
        options.delete("index")
        options["for"] ||= name_and_id["id"]

        content = if text.blank?
          i18n_label = I18n.t("helpers.label.#{object_name}.#{method_name}", :default => "")
          i18n_label if i18n_label.present?
        else
          text.to_s
        end

        content ||= if object && object.class.respond_to?(:human_attribute_name)
          object.class.human_attribute_name(method_name)
        end

        content ||= method_name.humanize

        label_tag(name_and_id["id"], content, options)
      end
Register or log in to add new notes.