Menu

[r9]: / notes / deletenotes.php  Maximize  Restore  History

Download this file

56 lines (42 with data), 1.7 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
#Application name: PhpCollab
#Status page: 1
#Path by root: ../notes/deletenotes.php
$checkSession = "true";
include_once('../includes/library.php');
if ($action == "delete") {
$id = str_replace("**",",",$id);
$tmpquery1 = "DELETE FROM ".$tableCollab["notes"]." WHERE id IN($id)";
connectSql("$tmpquery1");
headerFunction("../projects/viewproject.php?id=$project&msg=delete&".session_name()."=".session_id());
exit;
}
include('../themes/'.THEME.'/header.php');
$blockPage = new block();
$blockPage->openBreadcrumbs();
$blockPage->itemBreadcrumbs($blockPage->buildLink("../projects/listprojects.php?",$strings["projects"],in));
$blockPage->itemBreadcrumbs($strings["delete_note"]);
$blockPage->closeBreadcrumbs();
if ($msg != "") {
include('../includes/messages.php');
$blockPage->messagebox($msgLabel);
}
$block1 = new block();
$block1->form = "saP";
$block1->openForm("../notes/deletenotes.php?project=$project&action=delete&id=$id&".session_name()."=".session_id());
$block1->heading($strings["delete_note"]);
$block1->openContent();
$block1->contentTitle($strings["delete_following"]);
$id = str_replace("**",",",$id);
$tmpquery = "WHERE note.id IN($id) ORDER BY note.subject";
$listNotes = new request();
$listNotes->openNotes($tmpquery);
$comptListNotes = count($listNotes->note_id);
for ($i=0;$i<$comptListNotes;$i++) {
$block1->contentRow("#".$listNotes->note_id[$i],$listNotes->note_subject[$i]);
}
$block1->contentRow("","<input type=\"submit\" name=\"delete\" value=\"".$strings["delete"]."\"> <input type=\"button\" name=\"cancel\" value=\"".$strings["cancel"]."\" onClick=\"history.back();\">");
$block1->closeContent();
$block1->closeForm();
include('../themes/'.THEME.'/footer.php');
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.