27 lines
No EOL
442 B
PHP
27 lines
No EOL
442 B
PHP
<?php
|
|
|
|
/**
|
|
* Description of AuthController
|
|
*
|
|
*/
|
|
class AuthController extends Zend_Controller_Action
|
|
{
|
|
/**
|
|
* Let the user connect with a world of
|
|
* possibilities
|
|
*/
|
|
public function loginAction()
|
|
{
|
|
// Do authentication magic
|
|
}
|
|
|
|
/**
|
|
* This baby makes sure the user is
|
|
* no longer connected to the site
|
|
*/
|
|
public function logoutAction()
|
|
{
|
|
// Destroy the magic!
|
|
}
|
|
|
|
} |