Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/application/modules/default/controllers/AuthController.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!
}
}