Class: CamaleonCms::PostComment
- Inherits:
-
CamaleonRecord
- Object
- ActiveRecord::Base
- CamaleonRecord
- CamaleonCms::PostComment
- Includes:
- CommonRelationships, Metas
- Defined in:
- app/models/camaleon_cms/post_comment.rb
Instance Attribute Summary collapse
-
#is_anonymous ⇒ Object
attr_accessible :user_id, :post_id, :content, :author, :author_email, :author_url, :author_IP, :approved, :agent, :agent, :typee, :comment_parent, :is_anonymous.
Instance Method Summary collapse
-
#comment_user ⇒ Object
return the owner of this comment.
-
#is_approved? ⇒ Boolean
check if this comments is already approved.
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_option, #set_options
Methods inherited from CamaleonRecord
#cama_build_cache_key, #cama_fetch_cache, #cama_get_cache, #cama_remove_cache, #cama_set_cache
Instance Attribute Details
#is_anonymous ⇒ Object
attr_accessible :user_id, :post_id, :content, :author, :author_email, :author_url, :author_IP, :approved, :agent, :agent, :typee, :comment_parent, :is_anonymous
8 9 10 |
# File 'app/models/camaleon_cms/post_comment.rb', line 8 def is_anonymous @is_anonymous end |
Instance Method Details
#comment_user ⇒ Object
return the owner of this comment
30 31 32 |
# File 'app/models/camaleon_cms/post_comment.rb', line 30 def comment_user user end |
#is_approved? ⇒ Boolean
check if this comments is already approved
35 36 37 |
# File 'app/models/camaleon_cms/post_comment.rb', line 35 def is_approved? approved == 'approved' end |