Class: Redmine::FieldFormat::TextFormat
Instance Method Summary
collapse
-
#bulk_edit_tag(view, tag_id, tag_name, custom_field, objects, value, options = {}) ⇒ Object
-
#edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object
-
#formatted_value(view, custom_field, value, customized = nil, html = false) ⇒ Object
-
#query_filter_options(custom_field, query) ⇒ Object
Methods inherited from Unbounded
#validate_single_value
Methods inherited from Base
#after_save_custom_value, #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, #set_custom_field_value, #target_class, #validate_custom_field, #validate_custom_value, #validate_single_value, #value_from_keyword
#uri_with_link_safe_scheme?, #uri_with_safe_scheme?
Methods included from I18n
#current_language, #day_letter, #day_name, #find_language, #format_date, #format_hours, #format_time, included, #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
439
440
441
442
443
|
# File 'lib/redmine/field_format.rb', line 439
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 => 8)) +
'<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
435
436
437
|
# File 'lib/redmine/field_format.rb', line 435
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 => 8))
end
|
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
# File 'lib/redmine/field_format.rb', line 419
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
445
446
447
|
# File 'lib/redmine/field_format.rb', line 445
def query_filter_options(custom_field, query)
{:type => :text}
end
|