tap/app/helpers/application_helper.rb
2014-12-09 17:07:17 +01:00

19 lines
305 B
Ruby

require 'digest/md5'
module ApplicationHelper
def get_color(user)
@color = Digest::MD5.hexdigest(user.name)[0..5]
end
def get_color_style(user)
@style = "background-color: #"+ get_color(user) +";"
end
#tijdelijk voor layout
def koelkast(status)
@koelkast ||= status
end
end