123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace Grav\Plugin\MediaEmbed\OEmbed;
- use Grav\Plugin\MediaEmbed\OEmbed\OEmbed;
- class OEmbedPhoto extends OEmbed
- {
- public function getOEmbed()
- {
- $oembed = parent::getOEmbed();
- if ($this->embedCode && $this->oembed) {
- $width = $this->oembed->get('width');
- $height = $this->oembed->get('height');
- $this->attributes(['width' => $width, 'height' => $height]);
- }
- return $oembed;
- }
- }
|