Module: Pageflow::EntriesHelper
- Included in:
- SocialShareHelper
- Defined in:
- app/helpers/pageflow/entries_helper.rb
Defined Under Namespace
Modules: PrettyUrl
Instance Method Summary collapse
- #entry_css_class(entry) ⇒ Object
- #entry_file_rights(entry) ⇒ Object
- #entry_global_links(entry) ⇒ Object
- #entry_header_css_class(entry) ⇒ Object
- #entry_mobile_navigation_pages(entry) ⇒ Object
- #entry_privacy_link_url(entry) ⇒ Object
- #entry_stylesheet_link_tag(entry) ⇒ Object
- #entry_summary(entry) ⇒ Object
- #entry_theme_stylesheet_link_tag(entry) ⇒ Object
- #pretty_entry_title(entry) ⇒ Object
- #pretty_entry_url(entry, options = {}) ⇒ Object
Instance Method Details
#entry_css_class(entry) ⇒ Object
150 151 152 153 154 155 |
# File 'app/helpers/pageflow/entries_helper.rb', line 150 def entry_css_class(entry) [ (entry), entry.emphasize_chapter_beginning ? 'emphasize_chapter_beginning' : nil ].compact.join(' ') end |
#entry_file_rights(entry) ⇒ Object
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'app/helpers/pageflow/entries_helper.rb', line 67 def entry_file_rights(entry) rights = Pageflow.config.file_types.map do |file_type| entry.find_files(file_type.model).map do |file| file.rights.presence || entry.account.default_file_rights.presence end end.flatten.compact.sort.uniq if rights.any? content_tag :p, class: 'rights' do I18n.t('pageflow.helpers.entries.image_rights') + ": " + rights * ', ' end else '' end end |
#entry_global_links(entry) ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'app/helpers/pageflow/entries_helper.rb', line 83 def entry_global_links(entry) links = [] if entry.site.imprint_link_label.present? && entry.site.imprint_link_url.present? links << link_to(raw(entry.site.imprint_link_label), entry.site.imprint_link_url, target: '_blank', tabindex: 2, class: 'legal') end if entry.site.copyright_link_label.present? && entry.site.copyright_link_url.present? links << link_to(raw(entry.site.copyright_link_label), entry.site.copyright_link_url, target: '_blank', tabindex: 2, class: 'copy') end if entry.site.privacy_link_url.present? links << link_to(I18n.t('pageflow.public.privacy_notice'), entry_privacy_link_url(entry), target: '_blank', tabindex: 2, class: 'privacy') end if links.any? content_tag(:span, I18n.t('pageflow.helpers.entries.global_links'), class: 'hidden') + safe_join(links, ''.html_safe) else '' end end |
#entry_header_css_class(entry) ⇒ Object
157 158 159 160 161 162 163 |
# File 'app/helpers/pageflow/entries_helper.rb', line 157 def entry_header_css_class(entry) css_class = 'header' if entry.pages.any? && entry.pages.first.configuration['invert'] css_class += ' invert' end css_class end |
#entry_mobile_navigation_pages(entry) ⇒ Object
142 143 144 145 146 147 148 |
# File 'app/helpers/pageflow/entries_helper.rb', line 142 def (entry) entry.pages..tap do |pages| if entry.pages.any? && !entry.pages.first. [entry.pages.first, pages].flatten end end end |
#entry_privacy_link_url(entry) ⇒ Object
62 63 64 65 |
# File 'app/helpers/pageflow/entries_helper.rb', line 62 def entry_privacy_link_url(entry) return unless entry.site.privacy_link_url.present? "#{entry.site.privacy_link_url}?lang=#{entry.locale}" end |
#entry_stylesheet_link_tag(entry) ⇒ Object
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'app/helpers/pageflow/entries_helper.rb', line 123 def entry_stylesheet_link_tag(entry) url = pageflow.polymorphic_path(entry.stylesheet_model, action: :stylesheet, v: entry.stylesheet_cache_key, p: Pageflow::VERSION, format: 'css') # We cannot use stylesheet_link_tag here since that always uses # the asset host. Entry stylesheet requests are subject to # `Configuration#public_entry_request_scope` and # `Configuration#public_entry_redirect` which might depend on # the hostname. tag(:link, rel: 'stylesheet', href: url, media: 'all', data: {name: 'entry'}) end |
#entry_summary(entry) ⇒ Object
165 166 167 168 |
# File 'app/helpers/pageflow/entries_helper.rb', line 165 def entry_summary(entry) return '' if entry.summary.blank? (entry.summary.gsub(/<br ?\/?>/, ' ').squish) end |
#entry_theme_stylesheet_link_tag(entry) ⇒ Object
117 118 119 120 121 |
# File 'app/helpers/pageflow/entries_helper.rb', line 117 def entry_theme_stylesheet_link_tag(entry) stylesheet_link_tag(entry.theme.stylesheet_path, media: 'all', data: {name: 'theme'}) end |
#pretty_entry_title(entry) ⇒ Object
3 4 5 6 7 8 |
# File 'app/helpers/pageflow/entries_helper.rb', line 3 def pretty_entry_title(entry) return entry.title if entry.site.title == ' ' [entry.title, entry.site.title.presence || entry.site.cname_domain.presence].compact.join(' - ') end |