forked from hw2-archive/udwbase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitemsets.php
63 lines (53 loc) · 1.42 KB
/
itemsets.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
<?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/allitemsets.php');
$smarty->config_load($conf_file);
global $DB;
global $allitems;
global $itemset_col;
global $UDWBaseconf;
if(!$itemsets = load_cache(9, 'x'))
{
unset($itemsets);
$rows = $DB->select('
SELECT ?#
FROM ?_udwbase_itemset
ORDER by name_loc'.$_SESSION['locale'].'
{LIMIT ?d}',
$itemset_col[0],
($UDWBaseconf['limit']!=0)? $UDWBaseconf['limit']: DBSIMPLE_SKIP
);
$itemsets = array();
foreach ($rows as $numRow=>$row)
$itemsets[] = itemsetinfo2($row);
save_cache(9, 'x', $itemsets);
}
$smarty->assign('itemsets', $itemsets);
global $page;
$page = array(
'Mapper' => false,
'Book' => false,
'Title' => $smarty->get_config_vars('Item_Sets'),
'tab' => 0,
'type' => 0,
'typeid' => 0,
'path' => '[0, 2]'
);
$smarty->assign('page', $page);
// --Передаем данные шаблонизатору--
// Количество MySQL запросов
$smarty->assign('mysql', $DB->getStatistics());
// Если хоть одна информация о вещи найдена - передаём массив с информацией о вещях шаблонизатору
if (isset($allitems))
$smarty->assign('allitems',$allitems);
// Запускаем шаблонизатор
$smarty->display('itemsets.tpl');
?>