egroupware/anon_wrapper.php

41 lines
1.6 KiB
PHP
Raw Normal View History

<?php
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* Written by Dan Kuykendall <seek3r@phpgroupware.org> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
// TODO:
2001-12-24 06:04:23 +01:00
// Limit which users can access this program (ACL check)
// Global disabler
// Detect bad logins and passwords, spit out generic message
// If your are going to use multiable accounts, remove the following lines
$login = 'anonymous';
$passwd = 'anonymous';
2001-12-24 06:04:23 +01:00
$GLOBALS['phpgw_info']['flags'] = array(
'disable_Template_class' => True,
'login' => True,
'currentapp' => 'login',
2001-12-24 06:04:23 +01:00
'noheader' => True
);
include('./header.inc.php');
2002-09-16 02:00:04 +02:00
// If your are going to use multiable accounts, remove the following lines
// You must create the useraccount and check its permissions before use
$login = 'anonymous';
$passwd = 'anonymous';
$sessionid = $GLOBALS['phpgw']->session->create($login,$passwd,'text');
2001-12-24 06:04:23 +01:00
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php'));
?>