123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?php
- /*
- FusionPBX
- Version: MPL 1.1
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
- The Original Code is FusionPBX
- The Initial Developer of the Original Code is
- Mark J Crane <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2012
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- include "root.php";
- require_once "includes/require.php";
- require_once "includes/checkauth.php";
- if (permission_exists('group_add')) {
- //access allowed
- }
- else {
- echo "access denied";
- return;
- }
- //get the http values and set them as variables
- $path = check_str($_GET["path"]);
- $msg = check_str($_GET["msg"]);
- $group_name = check_str($_POST["group_name"]);
- $group_description = check_str($_POST["group_description"]);
- if (strlen($group_name) > 0) {
- $sql_insert = "insert into v_groups ";
- $sql_insert .= "(";
- $sql_insert .= "domain_uuid, ";
- $sql_insert .= "group_uuid, ";
- $sql_insert .= "group_name, ";
- $sql_insert .= "group_description ";
- $sql_insert .= ")";
- $sql_insert .= "values ";
- $sql_insert .= "(";
- $sql_insert .= "'$domain_uuid', ";
- $sql_insert .= "'".uuid()."', ";
- $sql_insert .= "'$group_name', ";
- $sql_insert .= "'$group_description' ";
- $sql_insert .= ")";
- if (!$db->exec($sql_insert)) {
- //echo $db->errorCode() . "<br>";
- $info = $db->errorInfo();
- print_r($info);
- // $info[0] == $db->errorCode() unified error code
- // $info[1] is the driver specific error code
- // $info[2] is the driver specific error string
- }
- //redirect the user
- require_once "includes/header.php";
- echo "<meta http-equiv=\"refresh\" content=\"2;url=grouplist.php\">\n";
- echo "<div align='center'>\n";
- echo "Group Added\n";
- echo "</div>\n";
- require_once "includes/footer.php";
- return;
- }
- //include the header
- include "includes/header.php";
- //show the content
- echo "<br><br>";
- echo "<div align='center'>";
- echo "<table width='100%' cellpadding='6' cellspacing='0'>\n";
- echo " <tr>\n";
- echo " <td align='left'>\n";
- echo " Please choose a group name. ";
- echo " </td>\n";
- echo " <td align='right'>\n";
- echo " <input type='button' class='btn' name='' alt='back' onclick=\"window.location='grouplist.php'\" value='Back'> ";
- echo " </td>\n";
- echo " </tr>\n";
- echo "</table>\n";
- echo "<br>";
- echo "<form name='login' METHOD=\"POST\" action=\"groupadd.php\">\n";
- echo "<table width='100%' cellpadding='6' cellspacing='0'>\n";
- echo "<tr>\n";
- echo "<td width='30%' class='vncellreq'>\n";
- echo "Group Name:\n";
- echo "</td>\n";
- echo "<td width='70%' align='left' class='vtable'>\n";
- echo " <input type=\"text\" class='formfld' name=\"group_name\">\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td class='vncellreq'>\n";
- echo "Description:\n";
- echo "</td>\n";
- echo "<td align='left' class='vtable'>\n";
- echo "<textarea name='group_description' class='formfld'></textarea>\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "<tr>\n";
- echo "<td>\n";
- echo "</td>\n";
- echo "<td align=\"right\">\n";
- echo " <input type=\"hidden\" name=\"path\" value=\"$path\">\n";
- echo " <input type=\"submit\" class='btn' value=\"Save\">\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "</table>\n";
- echo "</form>";
- echo "</div>";
- echo "<br><br>";
- echo "<br><br>";
- //include the footer
- include "includes/footer.php";
- ?>
|