-
Notifications
You must be signed in to change notification settings - Fork 23
/
object.php
96 lines (81 loc) · 2.26 KB
/
object.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
<?php
/*
* UDWBase: WOWDB Web Interface
*
* © UDW 2009-2011
*
* Released under the terms and conditions of the
* GNU General Public License (http://gnu.org).
*
*/
require_once ('includes/allobjects.php');
require_once ('includes/allitems.php');
require_once ('includes/allcomments.php');
require_once ('includes/allquests.php');
$smarty->config_load($conf_file, 'object');
// номер объекта;
$id = $podrazdel;
if (!$object = load_cache(3, intval($id))) {
unset($object);
// БД
global $DB;
// Данные об объекте:
$object = array();
$object = objectinfo($id, 1);
// Начиниают квесты...
$rows_qs = $DB->select('
SELECT o.?#
FROM ?_quest_relations q, ?_quest_template o
WHERE
q.entry = ?d
AND o.entry = q.quest
', $quest_cols[2], $id
);
if ($rows_qs) {
$object['starts'] = array();
foreach ($rows_qs as $numRow => $row)
$object['starts'][] = GetQuestInfo($row, 0xFFFFFF);
}
unset($rows_qs);
// Заканчивают квесты...
$rows_qe = $DB->select('
SELECT i.?#
FROM ?_quest_relations i, ?_quest_template q
WHERE
i.entry = ?d
AND q.entry = i.quest
', $quest_cols[2], $id
);
if ($rows_qe) {
$object['ends'] = array();
foreach ($rows_qe as $numRow => $row)
$object['ends'][] = GetQuestInfo($row, 0xFFFFFF);
}
unset($rows_qe);
// Положения объектофф:
position($object['entry'], 'gameobject');
save_cache(3, $object['entry'], $object);
}
global $page;
$page = array(
'Mapper' => false,
'Book' => false,
'Title' => $object['name'] . ' - ' . $smarty->get_config_vars('Objects'),
'tab' => 0,
'type' => 2,
'typeid' => $object['entry'],
'path' => '[0,5,' . $object['type'] . ']'
);
if ($object['pagetext'])
$page['Book'] = true;
$page['Mapper'] = true;
$smarty->assign('page', $page);
// Комментарии
$smarty->assign('comments', getcomments($page['type'], $page['typeid']));
if (isset($allitems))
$smarty->assign('allitems', $allitems);
if (isset($object))
$smarty->assign('object', $object);
// Количество MySQL запросов
$smarty->assign('mysql', $DB->getStatistics());
$smarty->display('object.tpl');