Module: KktShoppe::ApplicationHelper
- Defined in:
- app/helpers/kkt_shoppe/application_helper.rb
Instance Method Summary collapse
- #attachment_preview(attachment, options = {}) ⇒ Object
- #navigation_manager_link(item) ⇒ Object
- #settings_field(field, options = {}) ⇒ Object
- #settings_label(field) ⇒ Object
- #status_tag(status) ⇒ Object
Instance Method Details
#attachment_preview(attachment, options = {}) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'app/helpers/kkt_shoppe/application_helper.rb', line 12 def (, = {}) if .present? and .token.present? String.new.tap do |s| if .image? style = "style='background-image:url(#{.file.thumb.url})'" else style = '' end s << "<div class='attachmentPreview #{.image? ? 'image' : 'doc'}'>" s << "<div class='imgContainer'><div class='img' #{style}></div></div>" s << "<div class='desc'>" s << "<span class='filename'><a href='#{.file.url}'>#{.file_name}</a></span>" s << "<span class='delete'>" s << link_to(t('helpers.attachment_preview.delete', :default => 'Delete this file?'), (.token), :method => :delete, :data => {:confirm => t('helpers.attachment_preview.delete_confirm', :default => "Are you sure you wish to remove this attachment?")}) s << "</span>" s << "</div>" s << "</div>" end.html_safe elsif ![:hide_if_blank] "<div class='attachmentPreview'><div class='imgContainer'><div class='img none'></div></div><div class='desc none'>#{t('helpers.attachment_preview.no_attachment')},</div></div>".html_safe end end |
#navigation_manager_link(item) ⇒ Object
4 5 6 |
# File 'app/helpers/kkt_shoppe/application_helper.rb', line 4 def (item) link_to item.description, item.url(self), item..merge(:class => item.active?(self) ? 'active' : 'inactive') end |
#settings_field(field, options = {}) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'app/helpers/kkt_shoppe/application_helper.rb', line 39 def settings_field(field, = {}) default = I18n.t("kkt_shoppe.settings.defaults")[field.to_sym] value = (params[:settings] && params[:settings][field]) || KktShoppe.settings[field.to_s] type = I18n.t("kkt_shoppe.settings.types")[field.to_sym] || 'string' case type when 'boolean' String.new.tap do |s| value = default if value.blank? s << "<div class='radios'>" s << ("settings[#{field}]", 'true', value == true, :id => "settings_#{field}_true") s << label_tag("settings_#{field}_true", t("kkt_shoppe.settings.options.#{field}.affirmative", :default => 'Yes')) s << ("settings[#{field}]", 'false', value == false, :id => "settings_#{field}_false") s << label_tag("settings_#{field}_false", t("kkt_shoppe.settings.options.#{field}.negative", :default => 'No')) s << "</div>" end.html_safe else text_field_tag "settings[#{field}]", value, .merge(:placeholder => default, :class => 'text') end end |
#settings_label(field) ⇒ Object
35 36 37 |
# File 'app/helpers/kkt_shoppe/application_helper.rb', line 35 def settings_label(field) "<label for='settings_#{field}'>#{t("kkt_shoppe.settings.labels.#{field}")}</label>".html_safe end |
#status_tag(status) ⇒ Object
8 9 10 |
# File 'app/helpers/kkt_shoppe/application_helper.rb', line 8 def status_tag(status) content_tag :span, t("kkt_shoppe.orders.statuses.#{status}"), :class => "status-tag #{status}" end |