Class: Redmine::FieldFormat::BoolFormat

Inherits:
List
  • Object
show all
Defined in:
lib/redmine/field_format.rb

Instance Method Summary collapse

Methods inherited from List

#bulk_edit_tag, #query_filter_options

Methods inherited from Base

#after_save_custom_value, #before_custom_field_save, #bulk_edit_tag, #cast_custom_value, #cast_value, field_attributes, #formatted_custom_value, #formatted_value, #join_for_order_statement, #name, #order_statement, #possible_custom_value_options, #query_filter_options, #sanitize_html, #set_custom_field_value, #target_class, #validate_custom_field, #validate_custom_value, #validate_single_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

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



730
731
732
# File 'lib/redmine/field_format.rb', line 730

def cast_single_value(custom_field, value, customized=nil)
  value == '1' ? true : false
end

#edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object



742
743
744
745
746
747
748
749
750
751
# File 'lib/redmine/field_format.rb', line 742

def edit_tag(view, tag_id, tag_name, custom_value, options={})
  case custom_value.custom_field.edit_tag_style
  when 'check_box'
    single_check_box_edit_tag(view, tag_id, tag_name, custom_value, options)
  when 'radio'
    check_box_edit_tag(view, tag_id, tag_name, custom_value, options)
  else
    select_edit_tag(view, tag_id, tag_name, custom_value, options)
  end
end

#group_statement(custom_field) ⇒ Object



738
739
740
# File 'lib/redmine/field_format.rb', line 738

def group_statement(custom_field)
  order_statement(custom_field)
end

#labelObject



726
727
728
# File 'lib/redmine/field_format.rb', line 726

def label
  "label_boolean"
end

#possible_values_options(custom_field, object = nil) ⇒ Object



734
735
736
# File 'lib/redmine/field_format.rb', line 734

def possible_values_options(custom_field, object=nil)
  [[::I18n.t(:general_text_Yes), '1'], [::I18n.t(:general_text_No), '0']]
end

#single_check_box_edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object

Renders the edit tag as a simple check box



754
755
756
757
758
759
# File 'lib/redmine/field_format.rb', line 754

def single_check_box_edit_tag(view, tag_id, tag_name, custom_value, options={})
  s = ''.html_safe
  s << view.hidden_field_tag(tag_name, '0', :id => nil)
  s << view.check_box_tag(tag_name, '1', custom_value.value.to_s == '1', :id => tag_id)
  view.('span', s, options)
end