代码拉取完成,页面将自动刷新
同步操作将从 物联星空科技有限公司/daloradius汉化版 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <[email protected]> All Rights Reserved.
*
* 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 2
* of the License, or (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************************************************
*
* Authors: Liran Tal <[email protected]>
*
*********************************************************************************************************
*/
include ("library/checklogin.php");
$operator = $_SESSION['operator_user'];
include('library/check_operator_perm.php');
// declaring variables
isset($_GET['username']) ? $username = $_GET['username'] : $username = "";
isset($_GET['group']) ? $group = $_GET['group'] : $group = "";
isset($_GET['priority']) ? $priority = $_GET['priority'] : $priority = "";
$logDebugSQL = "";
$logAction = "";
if (isset($_POST['submit'])) {
$username = $_REQUEST['username'];
$group = $_REQUEST['group'];;
$priority = $_REQUEST['priority'];;
include 'library/opendb.php';
$sql = "SELECT * FROM ".$configValues['CONFIG_DB_TBL_RADUSERGROUP'].
" WHERE UserName='".$dbSocket->escapeSimple($username)."' AND GroupName='".$dbSocket->escapeSimple($group)."'";
$res = $dbSocket->query($sql);
$logDebugSQL .= $sql . "\n";
if ($res->numRows() == 0) {
if (trim($username) != "" and trim($group) != "") {
if (!isset($priority)) {
$priority = 1; // default in mysql table for usergroup
}
// insert usergroup details
$sql = "INSERT INTO ".$configValues['CONFIG_DB_TBL_RADUSERGROUP']." (UserName,GroupName,priority) ".
" VALUES ('".$dbSocket->escapeSimple($username)."', '".
$dbSocket->escapeSimple($group)."', ".$dbSocket->escapeSimple($priority).")";
$res = $dbSocket->query($sql);
$logDebugSQL .= $sql . "\n";
$successMsg = "Added new User-Group mapping to database: User<b> $username </b> and Group: <b> $group </b> ";
$logAction .= "Successfully added user-group mapping of user [$username] with group [$group] on page: ";
} else {
$failureMsg = "no username or groupname was entered, it is required that you specify both username and groupname";
$logAction .= "Failed adding (missing attributes) for user or group on page: ";
}
} else {
$failureMsg = "The user $username already exists in the user-group mapping database";
$logAction .= "Failed adding already existing user-group mapping for user [$username] with group [$group] on page: ";
}
include 'library/closedb.php';
}
include_once('library/config_read.php');
$log = "visited page: ";
?>
<!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" xml:lang="en">
<head>
<script src="library/javascript/pages_common.js" type="text/javascript"></script>
<title>daloRADIUS</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/1.css" type="text/css" media="screen,projection" />
</head>
<?php
include ("menu-mng-rad-usergroup.php");
?>
<div id="contentnorightbar">
<h2 id="Intro"><a href="#" onclick="javascript:toggleShowDiv('helpPage')"><?php echo $l['Intro']['mngradusergroupnew.php'] ?>
<h144>+</h144></a></h2>
<div id="helpPage" style="display:none;visibility:visible" >
<?php echo $l['helpPage']['mngradusergroupnew'] ?>
<br/>
</div>
<?php
include_once('include/management/actionMessages.php');
?>
<form name="newusergroup" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<fieldset>
<h302> <?php echo $l['title']['GroupInfo'] ?> </h302>
<br/>
<ul>
<li class='fieldset'>
<label for='username' class='form'><?php echo $l['all']['Username'] ?></label>
<input name='username' type='text' id='username' value='<?php echo $username ?>' tabindex=100 />
</li>
<li class='fieldset'>
<label for='group' class='form'><?php echo $l['all']['Groupname'] ?></label>
<?php
include 'include/management/populate_selectbox.php';
populate_groups("Select Groups","group","long");
?>
<div id='groupTooltip' style='display:none;visibility:visible' class='ToolTip'>
<img src='images/icons/comment.png' alt='Tip' border='0' />
<?php echo $l['Tooltip']['groupTooltip'] ?>
</div>
</li>
<li class='fieldset'>
<label for='priority' class='form'><?php echo $l['all']['Priority'] ?></label>
<input class='integer' name='priority' type='text' id='priority' value='0' tabindex=102 />
<img src="images/icons/bullet_arrow_up.png" alt="+" onclick="javascript:changeInteger('priority','increment')" />
<img src="images/icons/bullet_arrow_down.png" alt="-" onclick="javascript:changeInteger('priority','decrement')"/>
</li>
<li class='fieldset'>
<br/>
<hr><br/>
<input type='submit' name='submit' value='<?php echo $l['buttons']['apply'] ?>' class='button' />
</li>
</ul>
</fieldset>
<?php
include('include/config/logging.php');
?>
</div>
<div id="footer">
<?php
include 'page-footer.php';
?>
</div>
</div>
</div>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。