00001 <?php 00002 // --------------------------------------------------------------------------- 00003 // $Id$ 00004 // --------------------------------------------------------------------------- 00005 // OpenRat Content Management System 00006 // Copyright (C) 2002-2004 Jan Dankert, cms@jandankert.de 00007 // 00008 // This program is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU General Public License 00010 // as published by the Free Software Foundation; either version 2 00011 // of the License, or (at your option) any later version. 00012 // 00013 // This program is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 // GNU General Public License for more details. 00017 // 00018 // You should have received a copy of the GNU General Public License 00019 // along with this program; if not, write to the Free Software 00020 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00021 // --------------------------------------------------------------------------- 00022 // $Log$ 00023 // Revision 1.4 2006-01-11 22:51:51 dankert 00024 // Funktion login() deaktiviert 00025 // 00026 // Revision 1.3 2004/12/15 23:25:22 dankert 00027 // *** empty log message *** 00028 // 00029 // Revision 1.2 2004/05/02 14:49:37 dankert 00030 // Einf?gen package-name (@package) 00031 // 00032 // Revision 1.1 2004/04/24 15:14:52 dankert 00033 // Initiale Version 00034 // 00035 // Revision 1.2 2003/10/02 20:56:17 dankert 00036 // Benutzer entfernen 00037 // 00038 // Revision 1.1 2003/09/29 18:18:21 dankert 00039 // erste Version 00040 // 00041 // --------------------------------------------------------------------------- 00042 00043 00050 class LoginAction extends Action 00051 { 00052 var $defaultSubAction = 'login'; 00053 00054 function LoginAction() 00055 { 00056 } 00057 00058 00059 function blank() 00060 { 00061 $this->forward('blank'); 00062 } 00063 00064 00065 // function login() 00066 // { 00067 // global $conf; 00068 // 00069 // 00070 // foreach( $conf['database'] as $dbname=>$dbconf ) 00071 // { 00072 // if ( $dbconf['enabled'] ) 00073 // $dbids[$dbname] = $dbconf['comment']; 00074 // } 00075 // 00076 // $this->setTemplateVar( 'dbids',$dbids ); 00077 // 00078 // if ( $this->getSessionVar('dbid') != '' ) 00079 // $this->setTemplateVar('actdbid',$this->getSessionVar('dbid')); 00080 // $this->setTemplateVar('actdbid',$conf['database']['default']); 00081 // 00082 // $this->setTemplateVar('loginmessage',$this->getSessionVar('loginmessage')); 00083 // $this->setSessionVar('loginmessage',''); 00084 // 00085 // $this->forward('login'); 00086 // } 00087 }
1.5.8