Class: Redmine::FieldFormat::BoolFormat
- Defined in:
- lib/redmine/field_format.rb
Instance Method Summary collapse
- #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
- #label ⇒ Object
- #possible_values_options(custom_field, object = nil) ⇒ Object
-
#single_check_box_edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object
Renders the edit tag as a simple check box.
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, #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
#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
728 729 730 |
# File 'lib/redmine/field_format.rb', line 728 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
740 741 742 743 744 745 746 747 748 749 |
# File 'lib/redmine/field_format.rb', line 740 def edit_tag(view, tag_id, tag_name, custom_value, ={}) case custom_value.custom_field.edit_tag_style when 'check_box' single_check_box_edit_tag(view, tag_id, tag_name, custom_value, ) when 'radio' check_box_edit_tag(view, tag_id, tag_name, custom_value, ) else select_edit_tag(view, tag_id, tag_name, custom_value, ) end end |
#group_statement(custom_field) ⇒ Object
736 737 738 |
# File 'lib/redmine/field_format.rb', line 736 def group_statement(custom_field) order_statement(custom_field) end |
#label ⇒ Object
724 725 726 |
# File 'lib/redmine/field_format.rb', line 724 def label "label_boolean" end |
#possible_values_options(custom_field, object = nil) ⇒ Object
732 733 734 |
# File 'lib/redmine/field_format.rb', line 732 def (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
752 753 754 755 756 757 |
# File 'lib/redmine/field_format.rb', line 752 def single_check_box_edit_tag(view, tag_id, tag_name, custom_value, ={}) 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.content_tag('span', s, ) end |