Files
anpdf/app/helpers/picbook.php

39 lines
657 B
PHP
Raw Normal View History

2021-05-16 14:15:10 +03:00
<?php
/**
* url image book
*/
function picbook($item, $width, $height) {
2021-06-16 16:05:30 +03:00
$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;
2021-05-16 14:15:10 +03:00
2022-08-23 07:27:07 +00:00
}
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;
2021-05-16 14:15:10 +03:00
}