Class: Redmine::FieldFormat::DateFormat
Instance Method Summary
collapse
-
#bulk_edit_tag(view, tag_id, tag_name, custom_field, objects, value, options = {}) ⇒ Object
-
#cast_single_value(custom_field, value, customized = nil) ⇒ Object
-
#edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object
-
#group_statement(custom_field) ⇒ Object
-
#query_filter_options(custom_field, query) ⇒ Object
-
#validate_single_value(custom_field, value, customized = nil) ⇒ Object
Methods inherited from Base
#after_save_custom_value, #before_custom_field_save, #cast_custom_value, #cast_value, field_attributes, #formatted_custom_value, #formatted_value, #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, #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
571
572
573
574
575
|
# File 'lib/redmine/field_format.rb', line 571
def bulk_edit_tag(view, tag_id, tag_name, custom_field, objects, value, options={})
view.date_field_tag(tag_name, value, options.merge(:id => tag_id, :size => 10)) +
view.calendar_for(tag_id) +
bulk_clear_tag(view, tag_id, tag_name, custom_field, value)
end
|
#cast_single_value(custom_field, value, customized = nil) ⇒ Object
554
555
556
|
# File 'lib/redmine/field_format.rb', line 554
def cast_single_value(custom_field, value, customized=nil)
value.to_date rescue nil
end
|
#edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object
566
567
568
569
|
# File 'lib/redmine/field_format.rb', line 566
def edit_tag(view, tag_id, tag_name, custom_value, options={})
view.date_field_tag(tag_name, custom_value.value, options.merge(:id => tag_id, :size => 10)) +
view.calendar_for(tag_id)
end
|
#group_statement(custom_field) ⇒ Object
581
582
583
|
# File 'lib/redmine/field_format.rb', line 581
def group_statement(custom_field)
order_statement(custom_field)
end
|
#query_filter_options(custom_field, query) ⇒ Object
577
578
579
|
# File 'lib/redmine/field_format.rb', line 577
def query_filter_options(custom_field, query)
{:type => :date}
end
|
#validate_single_value(custom_field, value, customized = nil) ⇒ Object
558
559
560
561
562
563
564
|
# File 'lib/redmine/field_format.rb', line 558
def validate_single_value(custom_field, value, customized=nil)
if /^\d{4}-\d{2}-\d{2}$/.match?(value) && (value.to_date rescue false)
[]
else
[::I18n.t('activerecord.errors.messages.not_a_date')]
end
end
|