app\Post::commentsEnabled PHP 메소드

commentsEnabled() 공개 메소드

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