blob: 9334f7d95464367c423093da2490cc7dbe940c1d (
plain)
1
2
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
|
module ApplicationHelper
# nicely_joined_with_commata(['1', '2', '3', '4'])
# = '1, 2, 3 und 4'
#
def nicely_joined_with_commata(array_of_things)
if array_of_things.count == 1
array_of_things.first.to_s
else
if array_of_things.count > 1
output = array_of_things[0, array_of_things.count - 1].map{|item| item.to_s}.join(', ')
if I18n.locale == :de
output += ' und '
else
output += ' and '
end
output += array_of_things.last.to_s
end
end
end
def sortable(column, title)
link_class = (column.to_s == sort_column.to_s) ? "sort_descending #{sort_descending}" : nil
link_to title, {:sort => column, :desc => !!(!sort_descending && column), :type => @type}, {:class => link_class}
end
end
|