3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/show_for/content.rb', line 3
def content(value, options={}, apply_options=true, &block)
if value.blank? && value != false
value = options.delete(:if_blank) || I18n.t(:show_for.blank', :default => "Not specified")
options[:class] = [options[:class], ShowFor.blank_content_class].join(' ')
end
value = value.to_a if value.is_a?(Array)
content = case value
when Date, Time, DateTime
I18n.l value, :format => options.delete(:format) || ShowFor.i18n_format
when TrueClass
I18n.t :show_for.yes", :default => "Yes"
when FalseClass
I18n.t :show_for.no", :default => "No"
when Array, Hash
collection_handler(value, options, &block)
when Proc
@template.capture(&value)
when NilClass, Numeric
value.to_s
else
value
end
options[:content_html] = options.except(:content_tag) if apply_options
wrap_with(:content, content, options)
end
|