Portions created by the Initial Developer are Copyright (C) 2008-2012 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane James Rose */ require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; if (permission_exists('acl_node_delete')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support require_once "app_languages.php"; foreach($text as $key => $value) { $text[$key] = $value[$_SESSION['domain']['language']['code']]; } //get the id if (count($_GET)>0) { $id = check_str($_GET["id"]); } //delete the record if (strlen($id) > 0) { $sql = "delete from v_acl_nodes "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and acl_node_uuid = '$id' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); unset($sql); } //redirect the user $_SESSION['message'] = $text['message-delete']; header('Location: acl_nodes.php'); ?>