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_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
392
393
394
395
396
|
# File 'lib/redmine/field_format.rb', line 392
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
388
389
390
|
# File 'lib/redmine/field_format.rb', line 388
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
|
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
|
# File 'lib/redmine/field_format.rb', line 372
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
398
399
400
|
# File 'lib/redmine/field_format.rb', line 398
def query_filter_options(custom_field, query)
{:type => :text}
end
|