creddit/app/helpers/application_helper.rb

21 lines
374 B
Ruby
Raw Normal View History

2015-07-08 10:24:41 -04:00
module ApplicationHelper
def bootstrap_class_for(flash_type)
bootstrap_classes[flash_type] || flash_type.to_s
end
2015-08-06 16:31:08 -04:00
def page_header
content_for(:title) || ''
end
private
def bootstrap_classes
2015-07-16 11:57:27 -04:00
{
'alert' => 'alert-warning',
'error' => 'alert-danger',
'notice' => 'alert-info',
'success' => 'alert-success'
}
end
2015-07-08 10:24:41 -04:00
end