Portions created by the Initial Developer are Copyright (C) 2008-2012 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; if (permission_exists('schema_delete')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //get the http values if (count($_GET) > 0) { $id = check_str($_GET["id"]); $schema_uuid = check_str($_GET["schema_uuid"]); } //delete the data if (strlen($id) > 0) { $sql = "delete from v_schema_fields "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and schema_field_uuid = '$id' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); unset($sql); } //redirect the user $_SESSION["message"] = $text['message-delete']; header("Location: schema_edit.php?id=".$schema_uuid); return; ?>