linea21-core
[ class tree: linea21-core ] [ index: linea21-core ] [ all elements ]

Source for file sup.php

Documentation is available at sup.php

  1. <?php
  2. /**
  3.  * @package linea21.core
  4.  * @subpackage user
  5.  * @author linea21 <info@linea21.com>
  6.  * @version $id SVN
  7.  * @access public
  8.  * @license http://opensource.org/licenses/gpl-3.0.html
  9.  */
  10.  
  11. //////////// Check Inclusion de pages ////////////
  12. if (!class_exists('auth')) {
  13.   include_once("../lib/lib_common.php");
  14.   ReloadIndex('admin');
  15. }
  16. ////////////
  17.  
  18. //////////// Check Droits utilisateur ////////////
  19. if (!$l21auth->isSuperAdmin()) ReloadIndex('admin');
  20. ////////////
  21.  
  22. if(isset($_POST['id']))    $id=$_POST['id'];
  23. if(isset($_GET['id']))    $id=$_GET['id'];
  24. $link_det=$rub_link."&amp;todo=det&amp;id=".$id;
  25.  
  26.  
  27. if(isset($_POST['valider'])) {
  28.   $user_object new user;
  29.   $link_confirm="confirm.php?rub=".$rub."&todo=".$todo;
  30.   $result=$user_object->DeleteUser($id$sql_object);
  31.   if($resultheader("Location: ".$link_confirm);
  32.   else  system_error();
  33. }
  34.  
  35. $requeteSQL_getUserLogin($id);
  36. $result=$sql_object->DBSelect($requete);
  37. $current_title=stripslashes($result[0]['user_login']);
  38.  
  39. ?>
  40. <div id="chemin">
  41. <ul>
  42.     <li><a href="index.php" class="chemin_home"><?php echo _t('way','home'?></a></li>
  43.     <li><a href="<?php echo $rub_link?>" id="chemin_<?php echo $rub?>" class="chemin_rub"><?php echo _t('menu','user')?></a></li>
  44.     <li><span><?php echo formatnavTitle(_t('user','sup')." : "$current_title)?></span></li>
  45. </ul>
  46. </div>
  47. <!--end barre haute -->
  48. <?php
  49. include_once(THEME_ADMIN_PATH."quickicons.php");
  50. ?>
  51. <div class="contentcontainer"><?php
  52. include_once(override($dir.'/menurub.php'THEME_ADMIN_PATH));
  53. ?>
  54. <div id="content"><?php echo "<h2>".formatTitleh2($current_title)."</h2>"?>
  55. <form id="suptheme" action="<?php echo $_SERVER['SCRIPT_NAME']?>" method="post">
  56.         <p class="info"><?php echo _t('divers','sup_confirm')?></p>
  57.         <div>
  58.         <input name="id" type="hidden" value="<?php echo $id?>" />
  59.         <input name="rub" type="hidden" value="<?php echo $rub?>" id="rub" />
  60.         <input name="todo" type="hidden" value="<?php echo $todo?>" id="todo" />
  61.         <?php echo cancel_button('javascript:history.go(-1);')?>
  62.         <input name="valider" type="submit" value="<?php echo _t('btn','valid'?>" class="button" id="valider" />
  63.     </div>
  64. </form>
  65. </div>
  66. <?php include_once(override($dir.'/help.php'THEME_ADMIN_PATH))?>
  67. </div>

Documentation generated on Mon, 08 Apr 2013 18:16:16 +0200 by phpDocumentor 1.4.1