Class: Redmine::FieldFormat::DateFormat

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

Overview

Since:

  • 2.5.0

Instance Method Summary collapse

Methods inherited from Base

#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, #target_class, #validate_custom_field, #validate_custom_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



483
484
485
486
487
# File 'lib/redmine/field_format.rb', line 483

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



466
467
468
# File 'lib/redmine/field_format.rb', line 466

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



478
479
480
481
# File 'lib/redmine/field_format.rb', line 478

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



493
494
495
# File 'lib/redmine/field_format.rb', line 493

def group_statement(custom_field)
  order_statement(custom_field)
end

#query_filter_options(custom_field, query) ⇒ Object



489
490
491
# File 'lib/redmine/field_format.rb', line 489

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

#validate_single_value(custom_field, value, customized = nil) ⇒ Object



470
471
472
473
474
475
476
# File 'lib/redmine/field_format.rb', line 470

def validate_single_value(custom_field, value, customized=nil)
  if value =~ /^\d{4}-\d{2}-\d{2}$/ && (value.to_date rescue false)
    []
  else
    [::I18n.t('activerecord.errors.messages.not_a_date')]
  end
end