Class: Redmine::FieldFormat::DateFormat

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

Instance Method Summary collapse

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, #sanitize_html, #set_custom_field_value, #target_class, #validate_custom_field, #validate_custom_value, #value_from_keyword

Methods included from Helpers::URL

#uri_with_link_safe_scheme?, #uri_with_safe_scheme?

Methods included from I18n

#abbr_day_name, #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



573
574
575
576
577
# File 'lib/redmine/field_format.rb', line 573

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



556
557
558
# File 'lib/redmine/field_format.rb', line 556

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



568
569
570
571
# File 'lib/redmine/field_format.rb', line 568

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



583
584
585
# File 'lib/redmine/field_format.rb', line 583

def group_statement(custom_field)
  order_statement(custom_field)
end

#query_filter_options(custom_field, query) ⇒ Object



579
580
581
# File 'lib/redmine/field_format.rb', line 579

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

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



560
561
562
563
564
565
566
# File 'lib/redmine/field_format.rb', line 560

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