2020-04-30, 04:02:33
Hello,
I noticed that ItemManager automatically creates thumbnails inside data/uploads/imanager/x.y/thumbnail/
How can I access the thumbnail pictures url when doing a foreach ?
I noticed that ItemManager automatically creates thumbnails inside data/uploads/imanager/x.y/thumbnail/
How can I access the thumbnail pictures url when doing a foreach ?
Code:
$imanager = imanager();
$itemMapper = $imanager->getItemMapper();
$itemMapper->init(4); // Category 4 holds the pictures as item with id 1
$items = $itemMapper->items;
foreach($items as $item) {
$picture = $item->fields->image->fullurl;
$description = $item->fields->image->title;
$thumb-url = ??
}