Adldap\Models\User::isEnabled PHP 메소드

isEnabled() 공개 메소드

Returns if the user is enabled.
public isEnabled ( ) : boolean
리턴 boolean
    public function isEnabled()
    {
        return $this->getUserAccountControl() === null ? false : !$this->isDisabled();
    }