Sha256: 2417a21efe72ca1f6e87cffc1620fc8a33b252b250e28f52233e48dd5a93f943
Contents?: true
Size: 1.4 KB
Versions: 3
Compression:
Stored size: 1.4 KB
Contents
module Bhf module ApplicationHelper def show_t(platform) t("bhf.helpers.entry.models.#{platform.model_name}.show", platform_title: platform.title_singular.titleize, default: t('bhf.helpers.entry.show')).html_safe end def new_t(platform) t("bhf.helpers.entry.models.#{platform.model_name}.new", platform_title: platform.title_singular.titleize, default: t('bhf.helpers.entry.new')).html_safe end def duplicate_t(platform) t("bhf.helpers.entry.models.#{platform.model_name}.duplicate", platform_title: platform.title_singular.titleize, default: t('bhf.helpers.entry.duplicate')).html_safe end def edit_t(platform) t("bhf.helpers.entry.models.#{platform.model_name}.edit", platform_title: platform.title_singular.titleize, default: t('bhf.helpers.entry.edit')).html_safe end def delete_t(platform) t("bhf.helpers.entry.models.#{platform.model_name}.delete", platform_title: platform.title_singular.titleize, default: t('bhf.helpers.entry.delete')).html_safe end def find_smallest_size_url_for_file(file) if file.exists?(:thumb) file.url(:thumb) elsif file.exists?(:medium) file.url(:medium) else file.url end end def type_is_image?(type) Bhf.configuration.paperclip_image_types.include?(type) end def bhf_main_logo(area) Bhf.configuration.logo.call(area) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bhf-1.0.0.beta7 | app/helpers/bhf/application_helper.rb |
bhf-1.0.0.beta6 | app/helpers/bhf/application_helper.rb |
bhf-1.0.0.beta5 | app/helpers/bhf/application_helper.rb |