Файл: pages/widgets/main_menu.php
Строк: 40
<?php
rekl(2);
//подключаем языковой пакет
lang::start('main_menu');
$q_menu = query("SELECT * FROM `menu` ORDER BY `pos` ASC");
while ($post_menu = mysql_fetch_assoc($q_menu)) {
if ($post_menu['type'] != 'inc') {
if ($post_menu['type'] == 'link') {
echo "<a class='list-group-item' href='$post_menu[url]'>";
} else {
echo "<div class='list-group-item'>";
}
if ($post_menu['type'] == 'link') {
echo icons($post_menu['icon'], 'code');
}
echo lang($post_menu['name']);
if ($post_menu['counter'] != NULL and is_file(H . $post_menu['counter'])) {
echo '<span class="label label-default pull-right">';
include H . $post_menu['counter'];
echo '</span>';
}
if ($post_menu['type'] == 'link') {
echo "</a>";
} else {
echo "</div>";
}
} else {
if ($post_menu['type'] == 'inc' and is_file(H . $post_menu['url'])) {
include_once H . $post_menu['url'];
}
}
}