From 25587657328ca8b492a497e385a2fc3887925848 Mon Sep 17 00:00:00 2001 From: cash Date: Mon, 21 Feb 2011 01:45:21 +0000 Subject: Fixes #2971 added canComment() method and implemented it for ElggBlog git-svn-id: http://code.elgg.org/elgg/trunk@8381 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/blog/classes/ElggBlog.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'mod/blog') diff --git a/mod/blog/classes/ElggBlog.php b/mod/blog/classes/ElggBlog.php index 7a64a1777..0f0f27cf8 100644 --- a/mod/blog/classes/ElggBlog.php +++ b/mod/blog/classes/ElggBlog.php @@ -39,4 +39,27 @@ class ElggBlog extends ElggObject { // // return FALSE; // } + + /** + * Can a user comment on this blog? + * + * @see ElggObject::canComment() + * + * @param int $user_guid User guid (default is logged in user) + * @return bool + * @since 1.8.0 + */ + public function canComment($user_guid = 0) { + $result = parent::canComment($user_guid); + if ($result == false) { + return $result; + } + + if ($this->comments_on == 'Off') { + return false; + } + + return true; + } + } \ No newline at end of file -- cgit v1.2.3