Class: Redmine::FieldFormat::TextFormat

Inherits:
Unbounded show all
Defined in:
lib/redmine/field_format.rb

Overview

Since:

  • 2.5.0

Instance Method Summary collapse

Methods inherited from Unbounded

#validate_single_value

Methods inherited from Base

#before_custom_field_save, #cast_custom_value, #cast_single_value, #cast_value, field_attributes, #formatted_custom_value, #group_statement, #join_for_order_statement, #label, #name, #order_statement, #possible_custom_value_options, #possible_values_options, #target_class, #validate_custom_field, #validate_custom_value, #validate_single_value, #value_from_keyword

Methods included from Helpers::URL

#uri_with_safe_scheme?

Methods included from I18n

#current_language, #day_letter, #day_name, #find_language, #format_date, #format_time, #l, #l_hours, #l_hours_short, #l_or_humanize, #languages_options, #ll, #lu, #month_name, #set_language_if_valid, #valid_languages

Instance Method Details

#bulk_edit_tag(view, tag_id, tag_name, custom_field, objects, value, options = {}) ⇒ Object



356
357
358
359
360
# File 'lib/redmine/field_format.rb', line 356

def bulk_edit_tag(view, tag_id, tag_name, custom_field, objects, value, options={})
  view.text_area_tag(tag_name, value, options.merge(:id => tag_id, :rows => 3)) +
    '<br />'.html_safe +
    bulk_clear_tag(view, tag_id, tag_name, custom_field, value)
end

#edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object



352
353
354
# File 'lib/redmine/field_format.rb', line 352

def edit_tag(view, tag_id, tag_name, custom_value, options={})
  view.text_area_tag(tag_name, custom_value.value, options.merge(:id => tag_id, :rows => 3))
end

#formatted_value(view, custom_field, value, customized = nil, html = false) ⇒ Object



336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
# File 'lib/redmine/field_format.rb', line 336

def formatted_value(view, custom_field, value, customized=nil, html=false)
  if html
    if value.present?
      if custom_field.text_formatting == 'full'
        view.textilizable(value, :object => customized)
      else
        view.simple_format(html_escape(value))
      end
    else
      ''
    end
  else
    value.to_s
  end
end

#query_filter_options(custom_field, query) ⇒ Object



362
363
364
# File 'lib/redmine/field_format.rb', line 362

def query_filter_options(custom_field, query)
  {:type => :text}
end