Class: CamaleonCms::PostTypeDecorator

Inherits:
TermTaxonomyDecorator show all
Defined in:
app/decorators/camaleon_cms/post_type_decorator.rb

Instance Method Summary collapse

Methods inherited from TermTaxonomyDecorator

#the_content, #the_edit_link, #the_excerpt, #the_owner, #the_parent, #the_post, #the_posts, #the_slug, #the_status, #the_title

Methods included from CustomFieldsConcern

#render_fields, #the_field, #the_fields, #the_fields_grouped, #the_json_field, #the_json_fields

Methods inherited from ApplicationDecorator

#_calc_locale, #get_locale, #set_decoration_locale, #the_breadcrumb, #the_created_at, #the_id, #the_keywords, #the_slug, #the_updated_at

Methods included from MetasDecoratorMethods

#the_meta, #the_option

Instance Method Details

#generate_breadcrumb(add_post_type = true, is_parent = false) ⇒ Object

add_post_type: true/false to include post type link is_parent: true/false (internal control)



48
49
50
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 48

def generate_breadcrumb(add_post_type = true, is_parent = false)
  h.breadcrumb_add(self.the_title, is_parent ? self.the_url : nil) if add_post_type
end

#the_admin_url(list_type = "post") ⇒ Object

return the admin list url for this post type



36
37
38
39
40
41
42
43
44
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 36

def the_admin_url(list_type = "post")
  if list_type == "post"
    h.cama_admin_post_type_posts_path(object.id)
  elsif list_type == "tag"
    h.(object.id)
  else # categories
    h.cama_admin_post_type_categories_path(object.id)
  end
end

#the_categoriesObject

return main categories (first level) for the post_type (active_record) filtered by permissions in return object, you can add custom where’s or pagination like here: edgeguides.rubyonrails.org/active_record_querying.html



55
56
57
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 55

def the_categories
  object.categories
end

#the_category(slug_or_id) ⇒ Object

return a category from this post_type with id (integer) or by slug (string)



67
68
69
70
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 67

def the_category(slug_or_id)
  return the_categories.where(id: slug_or_id).first if slug_or_id.is_a?(Integer)
  return the_categories.find_by_slug(slug_or_id) if slug_or_id.is_a?(String)
end

#the_edit_urlObject

return edit url for this post type



30
31
32
33
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 30

def the_edit_url
  args = h.cama_current_site_host_port({})
  h.edit_cama_admin_settings_post_type_url(object.id, args)
end

#the_full_categoriesObject

return full categories (all levels) for the post_type (active_record) filtered by permissions in return object, you can add custom where’s or pagination like here: edgeguides.rubyonrails.org/active_record_querying.html



62
63
64
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 62

def the_full_categories
  object.full_categories
end

#the_group_url(*args) ⇒ Object

return the public url with group structure Sample: localhost/group/10-my-group.html



18
19
20
21
22
23
24
25
26
27
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 18

def the_group_url(*args)
  args = args.extract_options!
  args[:label] = I18n.t('routes.group', default: 'group')
  args[:post_type_id] = the_id
  args[:title] = the_title.parameterize.presence ||the_slug
  args[:locale] = get_locale unless args.include?(:locale)
  args[:format] = args[:format] || "html"
  as_path = args.delete(:as_path)
  h.cama_url_to_fixed("cama_post_type_#{as_path.present? ? "path" : "url"}", args)
end

#the_post_tagsObject

return all post_tags for the post_type (active_record) filtered by permissions + hidden posts + roles + etc… in return object, you can add custom where’s or pagination like here: edgeguides.rubyonrails.org/active_record_querying.html



75
76
77
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 75

def 
  object.
end

#the_thumb_url(default = nil) ⇒ Object

return thumbnail for this post type default: if thumbnail is not present, will render default



81
82
83
84
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 81

def the_thumb_url(default = nil)
  th = object.get_option("thumb", object.get_option("default_thumb"))
  th.present? ? th : (default || h.asset_url("camaleon_cms/image-not-found.png"))
end

#the_url(*args) ⇒ Object

return the public url for this post type Sample: localhost/my-group.html



6
7
8
9
10
11
12
13
14
# File 'app/decorators/camaleon_cms/post_type_decorator.rb', line 6

def the_url(*args)
  args = args.extract_options!
  args[:post_type_id] = the_id
  args[:post_type_slug] = I18n.t("routes.post_types.#{the_slug}", default: the_slug)
  args[:locale] = get_locale unless args.include?(:locale)
  args[:format] = args[:format] || "html"
  as_path = args.delete(:as_path)
  h.cama_url_to_fixed("cama_post_type_#{self.id}_#{as_path.present? ? "path" : "url"}", args)
end