forked from Public/pics
Split Image::getImageUrls from Image::getInlineImage
This commit is contained in:
parent
edfad992cc
commit
2bcdc5fe6e
@ -67,7 +67,7 @@ class Image extends Asset
|
|||||||
return EXIF::fromFile($this->getPath());
|
return EXIF::fromFile($this->getPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getInlineImage($width = null, $height = null, $className = 'inline-image')
|
public function getImageUrls($width = null, $height = null)
|
||||||
{
|
{
|
||||||
$image_urls = [];
|
$image_urls = [];
|
||||||
if (isset($width) || isset($height))
|
if (isset($width) || isset($height))
|
||||||
@ -79,6 +79,13 @@ class Image extends Asset
|
|||||||
else
|
else
|
||||||
$image_urls[1] = $this->getUrl();
|
$image_urls[1] = $this->getUrl();
|
||||||
|
|
||||||
|
return $image_urls;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getInlineImage($width = null, $height = null, $className = 'inline-image')
|
||||||
|
{
|
||||||
|
$image_urls = $this->getImageUrls($width, $height);
|
||||||
|
|
||||||
return '<img class="' . $className . '" src="' . $image_urls[1] . '" alt=""' .
|
return '<img class="' . $className . '" src="' . $image_urls[1] . '" alt=""' .
|
||||||
(isset($image_urls[2]) ? ' srcset="' . $image_urls[2] . ' 2x"' : '') . '>';
|
(isset($image_urls[2]) ? ' srcset="' . $image_urls[2] . ' 2x"' : '') . '>';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user