LdapTools\Connection\PageControl::isActive PHP 메소드

isActive() 공개 메소드

Returns whether or not a paging operation is active based on the status of the paging cookie (omnomnom).
public isActive ( ) : boolean
리턴 boolean
    public function isActive()
    {
        $active = $this->cookie !== null && $this->cookie != '';
        if ($this->sizeLimit && $this->sizeLimit === $this->pageSize) {
            $active = false;
        }
        return $active;
    }