123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <?php
- if (!defined('entry')) {
- define('entry', true);
- }
- /* ===========================
-
- Sorbet CMS - A PHP based tumblelog CMS forked from Gelato CMS
-
- Sorbet CMS is a free software licensed under the GPL 3.0
-
- =========================== */
- ?>
- <?php
- require '../entry.php';
- global $user, $conf, $tumble;
-
- $isEdition = isset($_GET["edit"]);
- $userId = ($isEdition) ? $_GET["edit"] : null;
- if ($user->isAdmin()) {
- if (isset($_GET["delete"])) {
- $user->deleteUser($_GET['delete']);
- header("Location: admin.php?delete=true");
- die();
- }
-
- if (isset($_POST["btnAdd"])) {
- unset($_POST["btnAdd"]);
- if (isset($_POST["repass"])) {
- unset($_POST["repass"]);
- }
- if (isset($_POST["btnVerifyUser"])) {
- unset($_POST["btnVerifyUser"]);
- }
- if (isset($_POST["id_user"])) {
- $user->modifyUser($_POST, $_POST["id_user"]);
- } else {
- $user->addUser($_POST);
- }
- } else {
- if ($isEdition) {
- $register = $user->getUserByID($userId);
- } ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>sorbet :: <?php echo __("add user")?></title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="sorbet cms <?php echo util::version(); ?>" />
- <link rel="shortcut icon" href="<?php echo $conf->urlSorbet; ?>/images/favicon.ico" />
- <script language="javascript" type="text/javascript" src="<?php echo $conf->urlSorbet; ?>/admin/scripts/jquery.js"></script>
- <script language="javascript" type="text/javascript" src="<?php echo $conf->urlSorbet; ?>/admin/scripts/tools.js"></script>
- <style type="text/css" media="screen">
- @import "<?php echo $conf->urlSorbet; ?>/admin/css/style.css";
- </style>
- </head>
-
- <body>
- <div id="div-process" style="display:none;"><?php echo __("Processing request…"); ?></div>
- <div id="cont">
- <div id="head">
- <h1><a href="<?php echo $conf->urlSorbet; ?>/admin/index.php" title="sorbet :: <?php echo __("home")?>">sorbet cms</a></h1>
- <ul id="nav">
- <li><a href="<?php echo $conf->urlSorbet; ?>/" title="<?php echo __("Take me to the tumblelog")?>"><?php echo __("Back to the Tumblelog")?></a></li>
- </ul>
- </div>
- <div id="main">
-
- <div class="box">
- <ul class="menu manage">
- <h3><?php echo __("Start session")?></h3>
- <li><a href="index.php"><?php echo __("Post")?></a></li>
- <li><a href="admin.php"><?php echo __("Users")?></a></li>
- <li class="selected"><a><?php echo ($isEdition) ? __("Edit") : __("Add"); ?></a></li>
- </ul>
-
- <div class="tabla">
-
- <form action="user.php" method="post" onSubmit="return validateFrmAddUser();" name="frm_add" class="newpost">
- <fieldset>
- <ul>
- <?php
- if ($isEdition) {
- ?>
- <input type="hidden" name="id_user" id="id_user" value="<?php echo $userId; ?>" />
- <?php
-
- } ?>
- <li>
- <label for="login"><?php echo __("user:")?></label>
- <input class="txt" name="login" id="login" type="text" autocomplete="off" value="<?php echo isset($register["login"])?$register["login"]:""; ?>" />
- <?php
- if (!$isEdition) {
- ?>
- <br /><input class='submit_normal_azul' name='btnVerifyUser' id='btnVerifyUser' type='button' value='Check availability' onclick='verifyExistingUser()' />
-
- <?php
-
- } ?>
- </li>
- <li>
- <div id="target" style="display:none;"></div>
- </li>
- <li>
- <label for="pass"><?php echo __("password:")?></label>
- <input class="txt" name="password" id="password" type="password" />
- </li>
- <li>
- <label for="repass"><?php echo __("retype password:")?></label>
- <input class="txt" name="repass" id="repass" type="password" />
- </li>
- <li>
- <label for="name"><?php echo __("name:")?></label>
- <input class="txt" name="name" id="name" type="text" value="<?php echo isset($register["name"])?$register["name"]:""; ?>" />
- </li>
- <li>
- <label for="email"><?php echo __("e-mail:")?></label>
- <input class="txt" name="email" id="email" type="text" value="<?php echo isset($register["email"])?$register["email"]:""; ?>" />
- </li>
- <li>
- <label for="website"><?php echo __("website:")?></label>
- <input class="txt" name="website" id="website" type="text" value="<?php echo isset($register["website"])?$register["website"]:""; ?>" />
- </li>
- <li>
- <label for="about"><?php echo __("about:")?></label><br />
- <textarea rows="5" cols="50" name="about" id="about" tabindex="7"><?php echo isset($register["about"])?$register["about"]:""; ?></textarea>
- </li>
- <li>
- <input name="btnAdd" type="submit" value="<?php echo ($isEdition) ? __("Modify") : __("Add"); ?> user" />
- </li>
- </ul>
- </fieldset>
- </form>
-
- </div>
-
- <div class="footer-box"> </div>
- </div>
- </div>
- <div id="foot">
- Sorbet CMS :: PHP Tumblelog Content Management System.
- </div>
- </div>
- </body>
- </html>
- <?php
-
- }
- } else {
- header("Location: ".$conf->urlSorbet."/login.php");
- }
- ?>
|