diff --git a/admin/user_editor_window.php b/admin/user_editor_window.php index 8fb84987..075cd48d 100644 --- a/admin/user_editor_window.php +++ b/admin/user_editor_window.php @@ -29,9 +29,14 @@ $tabs = array('personal' => array( 'name' => 'Personal', - 'types' => array('student','judge','committee','volunteer'), + 'types' => array('student','judge','committee','volunteer','sponsor'), 'file' => '../user_personal.php', ), + 'roles' => array( + 'name' => 'Roles/Account', + 'types' => array('student','judge','committee','volunteer','sponsor'), + 'file' => '../user_activate.php', + ), 'judgeother' => array( 'name' => 'Judge Other', 'types' => array('judge'), diff --git a/user_activate.php b/user_activate.php index 3c02dff4..610cc120 100644 --- a/user_activate.php +++ b/user_activate.php @@ -42,15 +42,22 @@ $action_what = $user_what[$action_type]; } + if($_SESSION['embed'] == true) + $eid = $_SESSION['embed_edit_id']; + else + $uid = $_SESSION['users_id']; - $u = user_load($_SESSION['users_id']); + $u = user_load($eid); switch($_POST['action']) { case 'delete': //okay here we go, lets get rid of them completely, since this is what theyve asked for message_push(happy(i18n("Account successfully deleted. Goodbye"))); user_delete($u); - header('location: user_login.php?action=logout'); + if($_SESSION['embed'] == true) + display_messages(); + else + header('location: user_login.php?action=logout'); exit; case 'remove': @@ -77,13 +84,20 @@ $u = user_load($u['id']); - $type = $_SESSION['users_type']; - $m = $user_what[$type]; - - send_header("Role and Account Management", - array("$m Main" => "{$type}_main.php") + if($_SESSION['embed'] == true) { + echo "
"; + display_messages(); + echo "

".i18n("Role and Account Management")."

"; + echo "
"; + } else { + $type = $_SESSION['users_type']; + $m = $user_what[$type]; + send_header("Role and Account Management", + array("$m Main" => "{$type}_main.php") ); + } + $action_url = ($_SESSION['embed'] == true) ? $_SESSION['embed_submit_url'] : $_SERVER['PHP_SELF']; foreach($u['types'] as $t) { echo '

'.i18n("Role: {$user_what[$t]}").'

'; @@ -98,7 +112,7 @@ } echo '
'; - echo "
"; + echo ""; echo "\n"; echo "\n"; echo ""; @@ -106,7 +120,7 @@ echo '
'; - echo ""; + echo ""; echo "\n"; echo "\n"; echo ""; @@ -114,7 +128,7 @@ echo ''; - echo ""; + echo ""; echo "\n"; echo "\n"; echo ""; @@ -132,10 +146,10 @@ echo '
  • '.i18n("The Delete Entire Account button below completely deletes your entire account. You will not receive any future email for any roles. It completely removes you from the system. This action cannot be undone."); echo ''; - echo ""; + echo ""; echo "\n"; echo ""; echo ""; - send_footer(); + if($_SESSION['embed'] != true) send_footer(); ?>