Files
anpdf/app/views/book.phtml
2021-06-19 23:26:37 +03:00

29 lines
1.2 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 class="pricename"><?=$book['pricename']?></p>
<?=$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>
<?endif?>
<?if ($book['offline_price'] > 0):?>
<p class="price"><a href="<?=$link_offline?>">Бумажная за <?=$book['offline_price']?> руб.</a></p>
<?endif?>
<?endif?>
</div>
</section>