Files
anpdf/app/views/book.phtml
arlemp@selectel.ru c033ac05d1 add reader lite
2024-05-31 11:46:26 +03:00

53 lines
2.5 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="<?=picbook_orig($book)?>" alt="<?=$book['pricename']?>">
<!--<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?>
<div class="textanons"><?=$book['priceanons']?></div>
<?if ($buy_status): // если книжка куплена?>
<p class="price"><a href="<?=$book['links']['pdf']?>" target="_blank">Читать 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?>">Доступ к библиотеке за 540 руб. в год</a></p>
<p>Или <strong><a href="https://klan.argumenti.ru/login">войдите</a></strong> в личный кабинет если покупка уже оформлена</p>
<?else:?>
<?if ($book['date_subscript'] !== '0000-00-00 00:00:00'):?>
<p>в подписке с <?=date('d.m.Y', strtotime($book['date_subscript']))?>
<?endif?>
<?if (SUBSTATUS == 0):?>
<strong><a href="https://argumenti.ru/klan_landing">за 540 рублей в год</a></strong>
<?endif?>
</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>