<?php
require_once('event_handler_web.class.php');
/**
* Class responsible for responding to all users.php (account management) requests.
*
*/
class UsersEventHandler extends WebEventHandler {
function __construct() {
parent::__construct();
// add allowances for any operations included in this subclass
$this->allow(array(
'my_account',
));
}
/**
* Show the "my account" page - password change, preferences, etc
*/
protected function my_account() {
$this->output .= 'THE MY ACCOUNT PAGE';
}
}
?>