Module: CamaleonCms::Frontend::ApplicationHelper

Includes:
ContentSelectHelper, NavMenuHelper, SeoHelper, SiteHelper
Included in:
CamaleonCms::FrontendController
Defined in:
app/helpers/camaleon_cms/frontend/application_helper.rb

Instance Method Summary collapse

Methods included from ContentSelectHelper

#each_category_of, #each_post_of, #process_in_block, #the_comments, #the_content, #the_excerpt, #the_field, #the_post, #the_post_type, #the_posts, #the_slug, #the_thumbnail, #the_title, #the_url

Methods included from SeoHelper

#cama_seo_settings, #cama_the_seo

Methods included from NavMenuHelper

#breadcrumb_add, #breadcrumb_draw, #cama_menu_draw_items, #cama_menu_parse_items, #cama_parse_menu_item, #draw_menu, #get_nav_menu

Methods included from SiteHelper

#is_ajax?, #is_category?, #is_home?, #is_page?, #is_post_tag?, #is_post_type?, #is_profile?, #is_search?, #site_current_path, #site_current_url, #the_head

Instance Method Details

#cama_url_to_fixed(url_to, *args) ⇒ Object

fix for url_to or url_path or any other who need add automatically current locale in the url sample: cama_url_to_fixed(“root_url”, data: “asdasd”, y: 12)

> localhost/fr?data=asdasd&y=12

note: if current locale is the default language, then locale is not added in the url



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'app/helpers/camaleon_cms/frontend/application_helper.rb', line 22

def cama_url_to_fixed(url_to, *args)
  options = args.extract_options!
  _current_site = options.delete(:site) || current_site
  if request.present?
    if options[:locale] == false
      options.delete(:locale)
    elsif options[:locale].blank? && _current_site&.get_languages&.size&.>(1)
      options[:locale] = I18n.locale
    end
    if options[:locale].present? && _current_site&.get_languages&.first&.to_s == options[:locale].to_s
      options[:locale] =
        nil
    end
  end

  options.delete(:format) if PluginRoutes.system_info['skip_format_url'].present?
  cama_current_site_host_port(options) unless options.key?(:host)
  send(url_to.tr('-', '_'), *(args << options))
end

#verify_front_visibility(active_record) ⇒ Object

add where conditionals to filter private/hidden/expired/drafts/unpublished note: only for post records



11
12
13
14
15
16
# File 'app/helpers/camaleon_cms/frontend/application_helper.rb', line 11

def verify_front_visibility(active_record)
  active_record = active_record.visible_frontend
  r = { active_record: active_record }
  hooks_run('filter_post', r)
  r[:active_record]
end