for more details. * * Copyright 2007-2010 Rejo Zenger * Copyright 2010-2014 Poweradmin Development Team * * * 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, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * Script that handles user editing requests * * @package Poweradmin * @copyright 2007-2010 Rejo Zenger * @copyright 2010-2014 Poweradmin Development Team * @license http://opensource.org/licenses/GPL-3.0 GPL */ require_once("inc/toolkit.inc.php"); include_once("inc/header.inc.php"); $edit_id = "-1"; if (isset($_GET['id']) && v_num($_GET['id'])) { $edit_id = $_GET['id']; } verify_permission('user_edit_own') ? $perm_edit_own = "1" : $perm_edit_own = "0"; verify_permission('user_edit_others') ? $perm_edit_others = "1" : $perm_edit_others = "0"; if ($edit_id == "-1") { error(ERR_INV_INPUT); } elseif (($edit_id == $_SESSION["userid"] && $perm_edit_own == "1") || ($edit_id != $_SESSION["userid"] && $perm_edit_others == "1" )) { if (isset($_POST["commit"])) { $i_username = "-1"; $i_fullname = "-1"; $i_email = "-1"; $i_description = "-1"; $i_password = "-1"; $i_perm_templ = "0"; $i_active = "0"; if (isset($_POST['username'])) { $i_username = $_POST['username']; } if (isset($_POST['fullname'])) { $i_fullname = $_POST['fullname']; } if (isset($_POST['email'])) { $i_email = $_POST['email']; } if (isset($_POST['description'])) { $i_description = $_POST['description']; } if (isset($_POST['password'])) { $i_password = $_POST['password']; } if (isset($_POST['perm_templ']) && v_num($_POST['perm_templ'])) { $i_perm_templ = $_POST['perm_templ']; } if (isset($_POST['active']) && v_num($_POST['active'])) { $i_active = $_POST['active']; } if ($i_username == "-1" || $i_fullname == "-1" || $i_email < "1" || $i_description == "-1" || $i_password == "-1") { error(ERR_INV_INPUT); } else { if ($i_username != "" && $i_perm_templ > "0" && $i_fullname) { if (!isset($i_active)) { $active = 0; } else { $active = 1; } if (edit_user($edit_id, $i_username, $i_fullname, $i_email, $i_perm_templ, $i_description, $active, $i_password)) { success(SUC_USER_UPD); } } } } $users = get_user_detail_list($edit_id); foreach ($users as $user) { (($user['active']) == "1") ? $check = " CHECKED" : $check = ""; echo "

" . _('Edit user') . " \"" . $user['fullname'] . "\"

\n"; echo "
\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; if (verify_permission('user_edit_templ_perm')) { echo " \n"; echo " \n"; echo " \n"; } echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
" . _('Username') . "
" . _('Fullname') . "
" . _('Password') . "
" . _('Email address') . "
" . _('Permission template') . "\n"; echo " \n"; echo "
" . _('Description') . "
" . _('Enabled') . "
 \n"; echo "
\n"; echo "
\n"; echo "

\n"; printf(_('This user has been assigned the permission template "%s".'), $user['tpl_name']); if ($user['tpl_descr'] != "") { echo " " . _('The description for this template is') . ": \"" . $user['tpl_descr'] . "\"."; } echo " " . _('Based on this template, this user has the following permissions') . ":"; echo "

\n"; echo "
    \n"; foreach (get_permissions_by_template_id($user['tpl_id']) as $item) { echo "
  • " . _($item['descr']) . " (" . $item['name'] . ")
  • \n"; } echo "
\n"; } } else { error(ERR_PERM_EDIT_USER); } include_once("inc/footer.inc.php");