You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5 KiB

# encoding: UTF-8
13 years ago
module ApplicationHelper
FLASH_ALIASES = HashWithIndifferentAccess.new(
error: :error, success: :success,
alert: :alert, warning: :alert, warn: :alert,
info: :info, notice: :info
)
13 years ago
# for each record in the rails flash this
# function wraps the message in an appropriate div
# and displays it
def flash_display(clazz = '')
flashes = flash.select{|key, msg| msg.present?}.collect { |key, msg|
content = '<a class="close" data-dismiss="alert">×</a> '.html_safe + msg
content_tag(:div, content, :class => "alert alert-#{FLASH_ALIASES[key]}")
13 years ago
}.join
13 years ago
flashes.present? ? content_tag(:div, flashes.html_safe, :class => clazz) : nil
13 years ago
end
13 years ago
def active_scaffold_column_timestamp(column, record)
value = record.send(column.name)
value.nil? ? nil : Time.at(value)
end
def error_messages_for(resource)
return "" if resource.errors.empty?
messages = resource.errors.full_messages.map { |msg| content_tag(:li, msg) }.join
sentence = I18n.t("errors.messages.not_saved",
13 years ago
:count => resource.errors.count,
:resource => resource.class.model_name.human.downcase)
html = <<-HTML
<div id="error_explanation">
<h2>#{sentence}</h2>
<ul>#{messages}</ul>
</div>
HTML
html.html_safe
end
13 years ago
def honeypot
content_tag('div', :style => 'position: absolute; left: -2000px;') do
text_field_tag("#{Settings.honeypot}", nil, :tabindex => 900)
end
end
13 years ago
end