attributes['subtype'] = "blog"; } /** * 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; } }