Documentation
Authentication
Basic Authentication using Databases
This uses the Hazaar\Auth\Adapter\DbTable class.
PDO Databases
class AuthController extends \Hazaar\Controller\Action { private $auth; public function init ( ) { $this->auth = new \Hazaar\Auth\DBTable(new \Hazaar\Db\Adapter()); } public function index ( ) { if(!$this->auth->authenticated()) $this->redirect($this->url('login')); $this->view('index'); } public function login(){ $this->view('login'); } }
MongoDB
Custom Authentication using Models
Contents
Powered by Scroly.io
Generated: Wednesday, March 23rd 2022 at 3:55pm