Sha256: f3e6bfa9be331e67342dc04048ba6f3d81c53370eff15cd61a3213efa7771136

Contents?: true

Size: 1.32 KB

Versions: 5

Compression:

Stored size: 1.32 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

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bhf-1.0.0.beta2 app/helpers/bhf/application_helper.rb
bhf-1.0.0.beta1 app/helpers/bhf/application_helper.rb
bhf-0.10.15 app/helpers/bhf/application_helper.rb
bhf-0.10.14 app/helpers/bhf/application_helper.rb
bhf-0.10.13 app/helpers/bhf/application_helper.rb