Files
anpdf/app/views/allbooks.phtml
2020-05-18 18:03:51 +03:00

55 lines
1.7 KiB
PHTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id="lk-menu">
<div id="menu_category">
<ul>
<?if ($category == 'gazeta'):?>
<li class="active">Газета</li>
<li><a href="<?=SITE?>mybooks/books/all/1">Книги</a></li>
<?else:?>
<li><a href="<?=SITE?>mybooks/gazeta/all/1">Газета</a></li>
<li class="active">Книги</li>
<?endif?>
</ul>
</div>
<?if ($items['subscript'] == true):?>
<div><p>Вам доступен весь архив</p></div>
<?else:?>
<div><p>Всего покупок: <?=$items['count']?></p></div>
<?endif?>
<?if ($category == 'gazeta'):?>
<div id="years">
<p>
<select id="year_filter" onchange="changeyear()">
<option value="all"<?=$selected?>>Все года</option>
<?for ($y = date('Y'); $y >= 2006; $y--):?>
<?$selected = ($filter == $y) ? ' selected' : ''?>
<option value="<?=$y?>"<?=$selected?>><?=$y?> год</option>
<?endfor?>
</select>
<i class="fas fa-chevron-down"></i>
</p>
</div>
<?endif?>
<div>
<a href="<?=SITE?>payments">Мои покупки</a>
</div>
</div>
<div class="lib_container">
<?foreach ($items['books'] as $book):?>
<div class="book_skeleton">
<div class="book_mini">
<a href="<?=$book['link']?>">
<img src="<?=$book['pic']?>">
<p class="book_mini_title"><?=$book['pricename']?></p>
</a>
</div>
</div>
<?endforeach?>
</div>
<?include 'blocks/pagenav.phtml'?>