forked from yunasc/tbdev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.php
120 lines (111 loc) · 5.46 KB
/
faq.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
/*
// +--------------------------------------------------------------------------+
// | Project: TBDevYSE - TBDev Yuna Scatari Edition |
// +--------------------------------------------------------------------------+
// | This file is part of TBDevYSE. TBDevYSE is based on TBDev, |
// | originally by RedBeard of TorrentBits, extensively modified by |
// | Gartenzwerg. |
// | |
// | TBDevYSE is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation; either version 2 of the License, or |
// | (at your option) any later version. |
// | |
// | TBDevYSE is distributed in the hope that it will be useful, |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
// | GNU General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with TBDevYSE; if not, write to the Free Software Foundation, |
// | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +--------------------------------------------------------------------------+
// | Do not remove above lines! |
// +--------------------------------------------------------------------------+
*/
/*
+--------------------------------------------------------------------------
| MySQL driven FAQ version 1.1 Beta
| ========================================
| by avataru
| (c) 2002 - 2005 avataru
| http://www.avataru.net
| ========================================
| Web: http://www.avataru.net
| Release: 1/9/2005 1:03 AM
| Email: avataru@avataru.net
| Tracker: http://www.sharereactor.ro
+---------------------------------------------------------------------------
|
| > FAQ public page
| > Written by avataru
| > Date started: 1/7/2005
|
+--------------------------------------------------------------------------
*/
require "include/bittorrent.php";
dbconn();
stdhead("×àÂî ñàéòà $SITENAME");
begin_frame("×àÂî ñàéòà $SITENAME");
end_frame();
$res = sql_query("SELECT `id`, `question`, `flag` FROM `faq` WHERE `type`='categ' ORDER BY `order` ASC");
while ($arr = mysql_fetch_array($res, MYSQL_BOTH)) {
$faq_categ[$arr[id]][title] = $arr[question];
$faq_categ[$arr[id]][flag] = $arr[flag];
}
$res = sql_query("SELECT `id`, `question`, `answer`, `flag`, `categ` FROM `faq` WHERE `type`='item' ORDER BY `order` ASC");
while ($arr = mysql_fetch_array($res, MYSQL_BOTH)) {
$faq_categ[$arr[categ]][items][$arr[id]][question] = $arr[question];
$faq_categ[$arr[categ]][items][$arr[id]][answer] = $arr[answer];
$faq_categ[$arr[categ]][items][$arr[id]][flag] = $arr[flag];
}
if (isset($faq_categ)) {
// gather orphaned items
foreach ($faq_categ as $id => $temp) {
if (!array_key_exists("title", $faq_categ[$id])) {
foreach ($faq_categ[$id][items] as $id2 => $temp) {
$faq_orphaned[$id2][question] = $faq_categ[$id][items][$id2][question];
$faq_orphaned[$id2][answer] = $faq_categ[$id][items][$id2][answer];
$faq_orphaned[$id2][flag] = $faq_categ[$id][items][$id2][flag];
unset($faq_categ[$id]);
}
}
}
begin_frame("Ñîäåðæàíèå");
foreach ($faq_categ as $id => $temp) {
if ($faq_categ[$id][flag] == "1") {
print("<ul>\n<li><a href=\"#". $id ."\"><b>". $faq_categ[$id][title] ."</b></a>\n<ul>\n");
if (array_key_exists("items", $faq_categ[$id])) {
foreach ($faq_categ[$id][items] as $id2 => $temp) {
if ($faq_categ[$id][items][$id2][flag] == "1")
print("<li><a href=\"#". $id2 ."\" class=\"altlink\">". $faq_categ[$id][items][$id2][question] ."</a></li>\n");
elseif ($faq_categ[$id][items][$id2][flag] == "2")
print("<li><a href=\"#". $id2 ."\" class=\"altlink\">". $faq_categ[$id][items][$id2][question] ."</a> <img src=\"".$pic_base_url."/updated.png\" alt=\"Îáíîâëåíî\" title=\"Îáíîâëåíî\" align=\"absbottom\"></li>\n");
elseif ($faq_categ[$id][items][$id2][flag] == "3")
print("<li><a href=\"#". $id2 ."\" class=\"altlink\">". $faq_categ[$id][items][$id2][question] ."</a> <img src=\"".$pic_base_url."/new.png\" alt=\"Íîâîå\" title=\"Íîâîå\" align=\"absbottom\"></li>\n");
}
}
print("</ul>\n</li>\n</ul>\n<br />\n");
}
}
end_frame();
foreach ($faq_categ as $id => $temp) {
if ($faq_categ[$id][flag] == "1") {
$frame = $faq_categ[$id][title] ." - <a href=\"#top\">Íàâåðõ</a>";
begin_frame($frame);
print("<a name=\"#". $id ."\" id=\"". $id ."\"></a>\n");
if (array_key_exists("items", $faq_categ[$id])) {
foreach ($faq_categ[$id][items] as $id2 => $temp) {
if ($faq_categ[$id][items][$id2][flag] != "0") {
print("<br />\n<b>". $faq_categ[$id][items][$id2][question] ."</b><a name=\"#". $id2 ."\" id=\"". $id2 ."\"></a>\n<br />\n");
print("<br />\n". $faq_categ[$id][items][$id2][answer] ."\n<br /><br />\n");
}
}
}
end_frame();
}
}
}
stdfoot();
?>