From 36a792246bc4aae3d4c506222cb6e8e97307eca0 Mon Sep 17 00:00:00 2001 From: z0rglub Date: Sun, 14 Sep 2003 15:00:39 +0000 Subject: Removing user_add.php, this file is replaced by a small form in user_list.php git-svn-id: http://piwigo.org/svn/trunk@95 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/user_add.php | 83 ------------------------------------------------------ 1 file changed, 83 deletions(-) delete mode 100644 admin/user_add.php (limited to 'admin') diff --git a/admin/user_add.php b/admin/user_add.php deleted file mode 100644 index d2353d212..000000000 --- a/admin/user_add.php +++ /dev/null @@ -1,83 +0,0 @@ - * - * author : Pierrick LE GALL * - * * - * $Id$ - * * - ***************************************************************************/ - -/*************************************************************************** - * * - * 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; * - * * - ***************************************************************************/ -include_once( './include/isadmin.inc.php' ); -//----------------------------------------------------- template initialization -$sub = $vtp->Open( '../template/'.$user['template'].'/admin/user_add.vtp' ); -$tpl = array( 'adduser_info_message', 'adduser_info_back', - 'adduser_fill_form', 'login', 'password', 'mail_address', - 'adduser_status', 'submit' ); -templatize_array( $tpl, 'lang', $sub ); -//--------------------------------------------------------- form criteria check -$error = array(); -if ( isset( $_POST['submit'] ) ) -{ - $error = register_user( - $_POST['username'], $_POST['password'], $_POST['password'], - $_POST['mail_address'], $_POST['status'] ); -} -//-------------------------------------------------------------- errors display -if ( sizeof( $error ) != 0 ) -{ - $vtp->addSession( $sub, 'errors' ); - for ( $i = 0; $i < sizeof( $error ); $i++ ) - { - $vtp->addSession( $sub, 'li' ); - $vtp->setVar( $sub, 'li.li', $error[$i] ); - $vtp->closeSession( $sub, 'li' ); - } - $vtp->closeSession( $sub, 'errors' ); -} -//---------------------------------------------------------------- confirmation -if ( sizeof( $error ) == 0 and isset( $_POST['submit'] ) ) -{ - $vtp->addSession( $sub, 'confirmation' ); - $vtp->setVar( $sub, 'confirmation.username', $_POST['username'] ); - $url = add_session_id( './admin.php?page=user_list' ); - $vtp->setVar( $sub, 'confirmation.url', $url ); - $vtp->closeSession( $sub, 'confirmation' ); - // reset all values - unset( $_POST ); -} -//------------------------------------------------------------------------ form -$action = add_session_id( './admin.php?page=user_add' ); -$vtp->setVar( $sub, 'form_action', $action ); -$vtp->setVar( $sub, 'user:username', $_POST['username'] ); -$vtp->setVar( $sub, 'user:password', $_POST['password'] ); -$vtp->setVar( $sub, 'user:mail_address', $_POST['mail_address'] ); - -if ( !isset( $_POST['status'] ) ) -{ - $_POST['status'] = 'guest'; -} -$option = get_enums( PREFIX_TABLE.'users', 'status' ); -for ( $i = 0; $i < sizeof( $option ); $i++ ) -{ - $vtp->addSession( $sub, 'status_option' ); - $vtp->setVar( $sub, 'status_option.value', $option[$i] ); - $vtp->setVar( $sub, 'status_option.option', - $lang['adduser_status_'.$option[$i]] ); - if( $option[$i] == $_POST['status'] ) - { - $vtp->setVar( $sub, 'status_option.selected', ' selected="selected"' ); - } - $vtp->closeSession( $sub, 'status_option' ); -} -//----------------------------------------------------------- sending html code -$vtp->Parse( $handle , 'sub', $sub ); -?> \ No newline at end of file -- cgit v1.2.3