Class: CamaleonCms::Post
- Inherits:
-
PostDefault
- Object
- ActiveRecord::Base
- PostDefault
- CamaleonCms::Post
- Includes:
- CategoriesTagsForPosts
- Defined in:
- app/models/camaleon_cms/post.rb
Instance Attribute Summary collapse
-
#show_title_with_parent ⇒ Object
Returns the value of attribute show_title_with_parent.
Attributes inherited from PostDefault
Instance Method Summary collapse
-
#can_commented? ⇒ Boolean
check if the post can be commented sample: @post.can_commented? return Boolean (true/false).
- #decorator_class ⇒ Object
-
#draft? ⇒ Boolean
check if this is in draft status.
-
#full_children ⇒ Object
return all children elements for current post (page hierarchy).
-
#get_layout(posttype = nil) ⇒ Object
return the layout assigned to this post post_type: post type owner of this post.
-
#get_post_type_depre ⇒ Object
return the post type of this post (DEPRECATED).
-
#get_template(posttype = nil) ⇒ Object
return the template assigned to this post verify default template defined in post type post_type: post type owner of this post.
-
#increment_visits! ⇒ Object
increment the counter of visitors.
-
#manage_comments?(posttype = nil) ⇒ Boolean
check if current post can manage comments return boolean.
-
#manage_content?(posttype = nil) ⇒ Boolean
check if current post can manage content return boolean.
-
#manage_keywords?(posttype = nil) ⇒ Boolean
check if current post can manage keywords return boolean.
-
#manage_layout?(posttype = nil) ⇒ Boolean
return boolean.
-
#manage_picture?(posttype = nil) ⇒ Boolean
check if current post can manage picture return boolean.
-
#manage_summary?(posttype = nil) ⇒ Boolean
check if current post can manage summary return boolean.
-
#manage_template?(posttype = nil) ⇒ Boolean
check if current post can manage template return boolean.
-
#parents ⇒ Object
return all parents for current page hierarchy ordered bottom to top.
-
#pending? ⇒ Boolean
check if this is in pending status.
-
#published? ⇒ Boolean
check if this post was published.
-
#set_layout(layout_name) ⇒ Object
save the layout name to be used on render this post layout_name: String layout name: my_layout.html.erb => ‘my_layout’.
-
#set_position(new_order_position) ⇒ Object
put a new order position for this post new_order_position: (Integer) position number return nil.
-
#set_setting(key, val) ⇒ Object
define post configuration for current post possible key values (String): has_content, boolean (default true) has_summary, boolean (default true) has_keywords, boolean (default true) has_picture, boolean (default true) has_template, boolean (default false) has_comments, boolean (default false) default_layout: (string) (default layout) # this is still used if post type was inactivated layout and overwritten by dropdown in post view default_template: (string) (default template) # this is still used if post type was inactivated template and overwritten by dropdown in post view has_layout: (boolean) (default false) skip_fields: (array) (default empty) array of custom field keys to avoid for this post, sample: [“subtitle”, “icon”] val: value for the setting.
-
#set_settings(settings = {}) ⇒ Object
assign multiple settings.
-
#set_summary(summary) ⇒ Object
save the summary for current post summary: Text String without html.
-
#set_thumb(thumb_url) ⇒ Object
save the thumbnail url for current post thumb_url: String url.
-
#total_comments ⇒ Object
return the quantity of comments for this post TODO comments count.
-
#total_visits ⇒ Object
return the quantity of visits for this post.
-
#trash? ⇒ Boolean
check if this is in trash status.
Methods included from CategoriesTagsForPosts
#assign_category, #assign_tags, #manage_categories?, #manage_tags?, #unassign_category, #unassign_tags, #update_categories, #update_extra_data, #update_tags
Methods inherited from PostDefault
#author, find_by_slug, #in_nav_menu_items, #parent, #set_params
Methods included from CustomFieldsRead
#add_custom_field_group, #add_custom_field_to_default_group, #get_field_groups, #get_field_object, #get_field_value, #get_field_values, #get_field_values_hash, #get_fields_grouped, #get_fields_object, #get_user_field_groups, #save_field_value, #set_field_value, #set_field_values, #update_field_value
Methods included from Metas
#delete_meta, #delete_option, #fix_save_metas_options_no_changed, #get_meta, #get_option, #options, #save_metas_options, #save_metas_options_skip, #set_meta, #set_metas, #set_multiple_options, #set_option
Instance Attribute Details
#show_title_with_parent ⇒ Object
Returns the value of attribute show_title_with_parent.
67 68 69 |
# File 'app/models/camaleon_cms/post.rb', line 67 def show_title_with_parent @show_title_with_parent end |
Instance Method Details
#can_commented? ⇒ Boolean
check if the post can be commented sample: @post.can_commented? return Boolean (true/false)
160 161 162 |
# File 'app/models/camaleon_cms/post.rb', line 160 def can_commented? manage_comments? && ('has_comments').to_s == "1" end |
#decorator_class ⇒ Object
247 248 249 |
# File 'app/models/camaleon_cms/post.rb', line 247 def decorator_class (self.post_type.get_option('cama_post_decorator_class', 'CamaleonCms::PostDecorator') rescue 'CamaleonCms::PostDecorator').constantize end |
#draft? ⇒ Boolean
check if this is in draft status
107 108 109 |
# File 'app/models/camaleon_cms/post.rb', line 107 def draft? status == 'draft' end |
#full_children ⇒ Object
return all children elements for current post (page hierarchy)
83 84 85 86 87 88 89 |
# File 'app/models/camaleon_cms/post.rb', line 83 def full_children cama_fetch_cache("full_children_#{self.id}") do res = self.children.to_a res.each{|c| res += c.full_children } res end end |
#get_layout(posttype = nil) ⇒ Object
return the layout assigned to this post post_type: post type owner of this post
215 216 217 218 |
# File 'app/models/camaleon_cms/post.rb', line 215 def get_layout(posttype = nil) return get_option("default_layout") if !manage_layout?(posttype) ('layout', get_option("default_layout") || (posttype || self.post_type).get_option('default_layout', nil)) end |
#get_post_type_depre ⇒ Object
return the post type of this post (DEPRECATED)
92 93 94 |
# File 'app/models/camaleon_cms/post.rb', line 92 def get_post_type_depre post_types.reorder(nil).first end |
#get_template(posttype = nil) ⇒ Object
return the template assigned to this post verify default template defined in post type post_type: post type owner of this post
223 224 225 226 |
# File 'app/models/camaleon_cms/post.rb', line 223 def get_template(posttype = nil) return get_option("default_template") if !manage_template?(posttype) ('template', get_option("default_template") || (posttype || self.post_type).get_option('default_template', nil)) end |
#increment_visits! ⇒ Object
increment the counter of visitors
229 230 231 |
# File 'app/models/camaleon_cms/post.rb', line 229 def increment_visits! ("visits", total_visits+1) end |
#manage_comments?(posttype = nil) ⇒ Boolean
check if current post can manage comments return boolean
153 154 155 |
# File 'app/models/camaleon_cms/post.rb', line 153 def manage_comments?(posttype = nil) get_option('has_comments', (posttype || self.post_type).get_option('has_comments', false)) end |
#manage_content?(posttype = nil) ⇒ Boolean
check if current post can manage content return boolean
118 119 120 |
# File 'app/models/camaleon_cms/post.rb', line 118 def manage_content?(posttype = nil) get_option('has_content', (posttype || self.post_type).get_option('has_content', true)) end |
#manage_keywords?(posttype = nil) ⇒ Boolean
check if current post can manage keywords return boolean
141 142 143 |
# File 'app/models/camaleon_cms/post.rb', line 141 def manage_keywords?(posttype = nil) get_option('has_keywords', (posttype || self.post_type).get_option('has_keywords', true)) end |
#manage_layout?(posttype = nil) ⇒ Boolean
return boolean
123 124 125 |
# File 'app/models/camaleon_cms/post.rb', line 123 def manage_layout?(posttype = nil) get_option('has_layout', (posttype || self.post_type).get_option('has_layout', false)) end |
#manage_picture?(posttype = nil) ⇒ Boolean
check if current post can manage picture return boolean
147 148 149 |
# File 'app/models/camaleon_cms/post.rb', line 147 def manage_picture?(posttype = nil) get_option('has_picture', (posttype || self.post_type).get_option('has_picture', true)) end |
#manage_summary?(posttype = nil) ⇒ Boolean
check if current post can manage summary return boolean
135 136 137 |
# File 'app/models/camaleon_cms/post.rb', line 135 def manage_summary?(posttype = nil) get_option('has_summary', (posttype || self.post_type).get_option('has_summary', true)) end |
#manage_template?(posttype = nil) ⇒ Boolean
check if current post can manage template return boolean
129 130 131 |
# File 'app/models/camaleon_cms/post.rb', line 129 def manage_template?(posttype = nil) get_option('has_template', (posttype || self.post_type).get_option('has_template', true)) end |
#parents ⇒ Object
return all parents for current page hierarchy ordered bottom to top
70 71 72 73 74 75 76 77 78 79 80 |
# File 'app/models/camaleon_cms/post.rb', line 70 def parents cama_fetch_cache("parents_#{self.id}") do res = [] p = self.parent while p.present? res << p p = p.parent end res end end |
#pending? ⇒ Boolean
check if this is in pending status
102 103 104 |
# File 'app/models/camaleon_cms/post.rb', line 102 def pending? status == 'pending' end |
#published? ⇒ Boolean
check if this post was published
97 98 99 |
# File 'app/models/camaleon_cms/post.rb', line 97 def published? status == 'published' end |
#set_layout(layout_name) ⇒ Object
save the layout name to be used on render this post layout_name: String layout name: my_layout.html.erb => ‘my_layout’
209 210 211 |
# File 'app/models/camaleon_cms/post.rb', line 209 def set_layout(layout_name) ("layout", layout_name) end |
#set_position(new_order_position) ⇒ Object
put a new order position for this post new_order_position: (Integer) position number return nil
191 192 193 |
# File 'app/models/camaleon_cms/post.rb', line 191 def set_position(new_order_position) self.update_column("post_order", new_order_position) end |
#set_setting(key, val) ⇒ Object
define post configuration for current post possible key values (String):
has_content, boolean (default true)
has_summary, boolean (default true)
has_keywords, boolean (default true)
has_picture, boolean (default true)
has_template, boolean (default false)
has_comments, boolean (default false)
default_layout: (string) (default layout) # this is still used if post type was inactivated layout and overwritten by dropdown in post view
default_template: (string) (default template) # this is still used if post type was inactivated template and overwritten by dropdown in post view
has_layout: (boolean) (default false)
skip_fields: (array) (default empty) array of custom field keys to avoid for this post, sample: ["subtitle", "icon"]
val: value for the setting
177 178 179 |
# File 'app/models/camaleon_cms/post.rb', line 177 def set_setting(key, val) set_option(key, val) end |
#set_settings(settings = {}) ⇒ Object
assign multiple settings
182 183 184 185 186 |
# File 'app/models/camaleon_cms/post.rb', line 182 def set_settings(settings = {}) settings.each do |key, val| set_setting(key, val) end end |
#set_summary(summary) ⇒ Object
save the summary for current post summary: Text String without html
197 198 199 |
# File 'app/models/camaleon_cms/post.rb', line 197 def set_summary(summary) ("summary", summary) end |
#set_thumb(thumb_url) ⇒ Object
save the thumbnail url for current post thumb_url: String url
203 204 205 |
# File 'app/models/camaleon_cms/post.rb', line 203 def set_thumb(thumb_url) ("thumb", thumb_url) end |
#total_comments ⇒ Object
return the quantity of comments for this post TODO comments count
240 241 242 |
# File 'app/models/camaleon_cms/post.rb', line 240 def total_comments self.("comments_count", 0).to_i end |
#total_visits ⇒ Object
return the quantity of visits for this post
234 235 236 |
# File 'app/models/camaleon_cms/post.rb', line 234 def total_visits ("visits", 0).to_i end |
#trash? ⇒ Boolean
check if this is in trash status
112 113 114 |
# File 'app/models/camaleon_cms/post.rb', line 112 def trash? status == 'trash' end |