Auth_Basic::allowPage PHP Метод

allowPage() публичный Метод

Specify page or array of pages which will exclude authentication. Add your registration page here or page containing terms and conditions.
public allowPage ( string | array $page )
$page string | array
    public function allowPage($page)
    {
        if (is_array($page)) {
            foreach ($page as $p) {
                $this->allowPage($p);
            }
            return $this;
        }
        $this->allowed_pages[] = $page;
        return $this;
    }