X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/903ed1bf71f570b2b0dc27c8819416e339736149..18e4849ef89b32f8aad1d42f5284bf60d5dc853d:/swap_roles.php diff --git a/swap_roles.php b/swap_roles.php new file mode 100644 index 00000000..5ee47248 --- /dev/null +++ b/swap_roles.php @@ -0,0 +1,60 @@ +isPost()) { + $cl_id = $request->getParameter('swap_with'); +} + +$form = new Form('swapForm'); +$form->addInput(array('type'=>'combobox','name'=>'swap_with','style'=>'width: 250px;','data'=>$users,'datakeys'=>array('id','name'))); +$form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.submit'))); + +if ($request->isPost()) { + if (ttTeamHelper::swapRolesWith($cl_id)) { + header('Location: users.php'); + exit(); + } else + $err->add($i18n->getKey('error.db')); +} + +$smarty->assign('forms', array($form->getName()=>$form->toArray())); +$smarty->assign('title', $i18n->getKey('title.swap_roles')); +$smarty->assign('content_page_name', 'swap_roles.tpl'); +$smarty->display('index.tpl');