Hey all,
Whenever I try to export an object set the PDF output for the images displays "image not found or type unknown". This does not happen when I export a search result set or other combinations of multiple objects, so I'm wondering if it's an issue with the media pathing specifically in the set exporter.
I've tried to look at the code and it seems that the template for sets is handled differently than simply objects or other primary types, which makes sense. Both in the checklist.php and display.php files for the set exporter I see the following:
<?php
if ($vs_path = $vo_result->getMediaPath('ca_object_representations.media', 'thumbnail')) {
print "<div class=\"imageTiny\"><img src='{$vs_path}'/></div>";
} else {
?>
<div class="imageTinyPlaceholder"> </div>
<?php
As far as I can understand the issue should be with that since those are the only lines of code that make reference to getting the object representations.
If anyone has any idea on what might going on, help would be welcome.
Thanks!