Files
anpdf/app/views/book.phtml
Your Name 804122e511 s
2021-10-12 17:36:09 +03:00

43 lines
1.9 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.

<section id="row">
<div id="book_id">
<img style="width:100%;" src="<?=$book['pic']?>">
</div>
<div id="priceanons">
<p id="artikul">Артикул <?=$book['price_id']?></p>
<h1 id="pricename-book"><?=$book['pricename']?></h1>
<?if ($book['priceauthor_id'] > 1):?>
<p class="pricename-author">
<?=$book['author']?> (<a class="pricename_author-rubric" href="<?=SITE?>author/<?=$book['authorslug']?>">Все книги автора</a>)
</p>
<?endif?>
<?if ($book['pricepart_id'] > 0):?>
<p class="pricename-rubric">
<a href="<?=SITE?>knigi/<?=$book['partalias']?>"><?=$book['partname']?></a>
</p>
<?endif?>
<?=$book['priceanons']?>
<?if ($buy_status):?>
<p class="price"><a href="<?=$book['links']['pdf']?>">Читать PDF</a></p>
<!-- <p><a href="<?=$book['links']['text']?>">Читать текст</a></p> -->
<?if ($book['category_id'] == 1):?>
<p class="price"><a href="<?=$book['links']['download']?>">Скачать PDF</a></p>
<?endif?>
<?else:?>
<?if ($book['price'] > 0):?>
<p class="price"><a href="<?=$link_online?>">Электронная за <?=$book['price']?> руб.</a></p>
<?endif?>
<?if ($book['sub'] == 1):?>
<p class="price"><a href="<?=$link_subscript?>">Доступ к библиотеке за 490 руб. в год</a></p>
<p>Или <strong><a href="https://klan.argumenti.ru/login">войдите</a></strong> в личный кабинет если покупка уже оформлена</p>
<?endif?>
<?if ($book['offline_price'] > 0 && $book['pieces'] > 0):?>
<p class="price"><a href="<?=$link_offline?>">Бумажная за <?=$book['offline_price']?> руб.</a></p>
<?endif?>
<?endif?>
</div>
</section>