app\Post::commentsEnabled PHP Method

commentsEnabled() public method

public commentsEnabled ( )
    public function commentsEnabled()
    {
        if ($this->logged_in_comments or $this->anonymous_comments) {
            return true;
        } else {
            return false;
        }
    }