Daniel-KM / Omeka-S-module-Timeline

Module for Omeka S that integrates the Simile Timeline widget and the online Knightlab timeline to create timelines.
Other
6 stars 7 forks source link

Missing Alt text of Media on Timeline #22

Open mdavismcd opened 2 years ago

mdavismcd commented 2 years ago

Can the media's description (Alt text module) get pulled as the alt text, e.g., alt="Davidson College Logo" for the media on the timeline? The Mapping Module added this in a recent commit and has the following text. I've tried to implement it (and smaller snippets of the code) into different files in the Timeline configuration with no luck.

// Set the "media" object.
        $media = $item->primaryMedia();
        if ($media) {
            $event['media'] = [
                'url' => $media->thumbnailUrl('large'),
                'thumbnail' => $media->thumbnailUrl('medium'),
                'link' => $item->url(),
                'alt' => $media->altText(),
            ];
        }

Thanks so much!

mdavismcd commented 2 years ago

Hi, @Daniel-KM. I'm just checking in on this. Thanks!