forked from sicalpath/tjupt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
faqmanage.php
105 lines (92 loc) · 6.95 KB
/
faqmanage.php
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
require "include/bittorrent.php";
dbconn();
loggedinorreturn();
if (get_user_class() < UC_ADMINISTRATOR) {
permissiondenied();
}
stdhead("FAQ Management");
begin_main_frame();
print("<h1 align=\"center\">FAQ Management</h1>");
// make the array that has all the faq in a nice structured
$res = sql_query("SELECT faq.id, faq.link_id, faq.lang_id, lang_name, faq.question, faq.flag, faq.order FROM faq LEFT JOIN language on faq.lang_id = language.id WHERE type='categ' ORDER BY lang_name, `order` ASC");
while ($arr = mysql_fetch_array($res, MYSQL_BOTH)) {
$faq_categ[$arr['lang_id']][$arr['link_id']]['title'] = $arr['question'];
$faq_categ[$arr['lang_id']][$arr['link_id']]['flag'] = $arr['flag'];
$faq_categ[$arr['lang_id']][$arr['link_id']]['order'] = $arr['order'];
$faq_categ[$arr['lang_id']][$arr['link_id']]['id'] = $arr['id'];
$faq_categ[$arr['lang_id']][$arr['link_id']]['lang_name'] = $arr['lang_name'];
}
$res = sql_query("SELECT faq.id, faq.question, faq.lang_id, faq.flag, faq.categ, faq.order FROM faq WHERE type='item' ORDER BY `order` ASC");
while ($arr = mysql_fetch_array($res)) {
$faq_categ[$arr['lang_id']][$arr['categ']]['items'][$arr['id']]['question'] = $arr['question'];
$faq_categ[$arr['lang_id']][$arr['categ']]['items'][$arr['id']]['flag'] = $arr['flag'];
$faq_categ[$arr['lang_id']][$arr['categ']]['items'][$arr['id']]['order'] = $arr['order'];
}
if (isset($faq_categ)) {
// gather orphaned items
foreach ($faq_categ as $lang => $temp2) {
foreach ($temp2 as $id => $temp) {
if (!array_key_exists("title", $temp2[$id])) {
foreach ($temp2[$id]['items'] as $id2 => $temp) {
$faq_orphaned[$lang][$id2]['question'] = $temp2[$id]['items'][$id2]['question'];
$faq_orphaned[$lang][$id2]['flag'] = $temp2[$id]['items'][$id2]['flag'];
unset($temp2[$id]);
}
}
}
}
// print the faq table
print("<form method=\"post\" action=\"faqactions.php?action=reorder\">");
foreach ($faq_categ as $lang => $temp2) {
foreach ($temp2 as $id => $temp) {
print("<br />\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\" width=\"95%\">\n");
print("<tr><td class=\"colhead\" align=\"center\" colspan=\"2\">Position</td><td class=\"colhead\" align=\"left\">Section/Item Title</td><td class=\"colhead\" align=\"center\">Language</td><td class=\"colhead\" align=\"center\">Status</td><td class=\"colhead\" align=\"center\">Actions</td></tr>\n");
print("<tr><td align=\"center\" width=\"40px\"><select name=\"order[" . $id . "]\">");
for ($n = 1; $n <= count($temp2); $n++) {
$sel = ($n == $temp2[$id]['order']) ? " selected=\"selected\"" : "";
print("<option value=\"$n\" " . $sel . ">" . $n . "</option>");
}
$status = ($temp2[$id]['flag'] == "0") ? "<font color=\"red\">Hidden</font>" : "Normal";
print("</select></td><td align=\"center\" width=\"40px\"> </td><td><b>" . $temp2[$id]['title'] . "</b></td><td align=\"center\" width=\"60px\">" . $temp2[$id]['lang_name'] . "</td><td align=\"center\" width=\"60px\">" . $status . "</td><td align=\"center\" width=\"60px\"><a href=\"faqactions.php?action=edit&id=" . $temp2[$id]['id'] . "\">Edit</a> <a href=\"faqactions.php?action=delete&id=" . $temp2[$id]['id'] . "\">Delete</a></td></tr>\n");
if (array_key_exists("items", $temp2[$id])) {
foreach ($temp2[$id]['items'] as $id2 => $temp) {
print("<tr><td align=\"center\" width=\"40px\"> </td><td align=\"center\" width=\"40px\"><select name=\"order[" . $id2 . "]\">");
for ($n = 1; $n <= count($temp2[$id]['items']); $n++) {
$sel = ($n == $temp2[$id]['items'][$id2]['order']) ? " selected=\"selected\"" : "";
print("<option value=\"$n\" " . $sel . " >" . $n . "</option>");
}
if ($temp2[$id]['items'][$id2]['flag'] == "0") $status = "<font color=\"#FF0000\">Hidden</font>";
elseif ($temp2[$id]['items'][$id2]['flag'] == "2") $status = "<font color=\"#0000FF\"><img class=\"faq_updated\" src=\"pic/trans.gif\" alt=\"Updated\" width=\"46\" height=\"11\" align=\"absbottom\"></font>";
elseif ($temp2[$id]['items'][$id2]['flag'] == "3") $status = "<font color=\"#008000\"><img class=\"faq_new\" src=\"pic/trans.gif\" alt=\"New\" width=\"27\" height=\"11\" align=\"absbottom\"></font>";
else $status = "Normal";
print("</select></td><td>" . $temp2[$id]['items'][$id2]['question'] . "</td><td align=\"center\"></td><td align=\"center\" width=\"60px\">" . $status . "</td><td align=\"center\" width=\"60px\"><a href=\"faqactions.php?action=edit&id=" . $id2 . "\">Edit</a> <a href=\"faqactions.php?action=delete&id=" . $id2 . "\">Delete</a></td></tr>\n");
}
}
print("<tr><td colspan=\"6\" align=\"center\"><a href=\"faqactions.php?action=additem&inid=" . $id . "&langid=" . $lang . "\">Add new item</a></td></tr>\n");
print("</table>\n");
}
}
}
// print the orphaned items table
if (isset($faq_orphaned)) {
print("<br />\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\" width=\"95%\">\n");
print("<tr><td align=\"center\" colspan=\"3\"><b style=\"color: #FF0000\">Orphaned Items</b></td>\n");
print("<tr><td class=\"colhead\" align=\"left\">Item Title</td><td class=\"colhead\" align=\"center\">Status</td><td class=\"colhead\" align=\"center\">Actions</td></tr>\n");
foreach ($faq_orphaned as $lang => $temp2) {
foreach ($temp2 as $id => $temp) {
if ($temp2[$id]['flag'] == "0") $status = "<font color=\"#FF0000\">Hidden</font>";
elseif ($temp2[$id]['flag'] == "2") $status = "<font color=\"#0000FF\">Updated</font>";
elseif ($temp2[$id]['flag'] == "3") $status = "<font color=\"#008000\">New</font>";
else $status = "Normal";
print("<tr><td>" . $temp2[$id]['question'] . "</td><td align=\"center\" width=\"60px\">" . $status . "</td><td align=\"center\" width=\"60px\"><a href=\"faqactions.php?action=edit&id=" . $id . "\">edit</a> <a href=\"faqactions.php?action=delete&id=" . $id . "\">delete</a></td></tr>\n");
}
}
print("</table>\n");
}
print("<br />\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"5\" align=\"center\" width=\"95%\">\n<tr><td align=\"center\"><a href=\"faqactions.php?action=addsection\">Add new section</a></td></tr>\n</table>\n");
print("<p align=\"center\"><input type=\"submit\" name=\"reorder\" value=\"Reorder\"></p>\n");
print("</form>\n");
print("<p>When the position numbers don't reflect the position in the table, it means the order id is bigger than the total number of sections/items and you should check all the order id's in the table and click \"reorder\"</p>");
end_main_frame();
stdfoot();