2012-06-04 16:58:40 +02:00
|
|
|
<?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 <markjcrane@fusionpbx.com>
|
|
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
require_once "root.php";
|
|
|
|
|
require_once "includes/require.php";
|
|
|
|
|
require_once "includes/checkauth.php";
|
2013-04-11 18:56:30 +02:00
|
|
|
if (permission_exists('schema_delete')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-21 18:02:05 +02:00
|
|
|
//add multi-lingual support
|
|
|
|
|
require_once "app_languages.php";
|
|
|
|
|
foreach($text as $key => $value) {
|
|
|
|
|
$text[$key] = $value[$_SESSION['domain']['language']['code']];
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
if (count($_GET)>0) {
|
|
|
|
|
|
|
|
|
|
//declare variable(s)
|
2013-04-11 18:56:30 +02:00
|
|
|
$schema_parent_id = '';
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//get the http get and set them as php variables
|
2013-03-25 20:15:27 +01:00
|
|
|
$data_row_uuid = check_str($_GET["data_row_uuid"]);
|
|
|
|
|
$data_parent_row_uuid = check_str($_GET["data_parent_row_uuid"]);
|
2013-04-11 18:56:30 +02:00
|
|
|
$schema_uuid = check_str($_GET["schema_uuid"]);
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//show the results and redirect
|
|
|
|
|
require_once "includes/header.php";
|
|
|
|
|
|
2013-04-11 18:56:30 +02:00
|
|
|
//get the schema_parent_id from the child table
|
|
|
|
|
if (strlen($schema_parent_id) == 0) {
|
|
|
|
|
$sql = "select * from v_schemas ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$sql .= "where domain_uuid = '$domain_uuid' ";
|
2013-04-11 18:56:30 +02:00
|
|
|
$sql .= "and schema_uuid = '$schema_uuid' ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
foreach ($result as &$row) {
|
2013-04-11 18:56:30 +02:00
|
|
|
$schema_parent_id = $row["schema_parent_id"];
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//delete the child data
|
2013-04-11 18:56:30 +02:00
|
|
|
$sql = "delete from v_schema_data ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$sql .= "where domain_uuid = '$domain_uuid' ";
|
2013-03-25 20:15:27 +01:00
|
|
|
$sql .= "and data_parent_row_uuid = '$data_row_uuid' ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
|
|
|
|
|
//delete the data
|
2013-04-11 18:56:30 +02:00
|
|
|
$sql = "delete from v_schema_data ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$sql .= "where domain_uuid = '$domain_uuid' ";
|
2013-03-25 20:15:27 +01:00
|
|
|
$sql .= "and data_row_uuid = '$data_row_uuid' ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
|
|
|
|
|
//mark the the item as deleted and who deleted it
|
2013-04-11 18:56:30 +02:00
|
|
|
//$sql = "update v_schema_data set ";
|
2013-03-25 20:15:27 +01:00
|
|
|
//$sql .= "data_del_date = now(), ";
|
|
|
|
|
//$sql .= "data_del_user = '".$_SESSION["username"]."' ";
|
2012-06-04 16:58:40 +02:00
|
|
|
//$sql .= "where domain_uuid = '$domain_uuid' ";
|
2013-03-25 20:15:27 +01:00
|
|
|
//$sql .= "and data_row_uuid = '$data_row_uuid' ";
|
2012-06-04 16:58:40 +02:00
|
|
|
//$db->exec(check_sql($sql));
|
|
|
|
|
//$lastinsertid = $db->lastInsertId($id);
|
|
|
|
|
//unset($sql);
|
|
|
|
|
|
|
|
|
|
//set the meta redirect
|
2013-03-25 20:15:27 +01:00
|
|
|
if (strlen($data_parent_row_uuid) == 0) {
|
2013-04-11 18:56:30 +02:00
|
|
|
echo "<meta http-equiv=\"refresh\" content=\"2;url=schema_data_view.php?id=$schema_uuid&data_row_uuid=$data_row_uuid\">\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2013-04-11 18:56:30 +02:00
|
|
|
echo "<meta http-equiv=\"refresh\" content=\"2;url=schema_data_edit.php?schema_uuid=$schema_parent_id&data_row_uuid=$data_parent_row_uuid\">\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//show a message to the user before the redirect
|
|
|
|
|
echo "<div align='center'>\n";
|
2013-06-21 18:02:05 +02:00
|
|
|
echo $text['message-delete']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</div>\n";
|
|
|
|
|
require_once "includes/footer.php";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|