Files
anpdf/app/helpers/picbook.php
2022-08-23 10:21:45 +03:00

39 lines
657 B
PHP

<?php
/**
* url image book
*/
function picbook($item, $width, $height) {
$id = $item['price_id'];
$img = $item['priceimg'];
if (in_array($img, array('jpg', 'jpeg', 'gif', 'png', 'JPG'))){
$fileimg = $id . '.' . $img;
}
else
$fileimg = $img;
return IMGSRV.'price/'.$width.'x'.$height.'/'.$fileimg;
}
function picbook_orig($item){
$id = $item['price_id'];
$img = $item['priceimg'];
if (in_array($img, array('jpg', 'jpeg', 'gif', 'png', 'JPG'))){
$fileimg = $id . '.' . $img;
}
else
$fileimg = $img;
return 'https://argumenti.ru/pub/images/price/'.$fileimg;
}