2018-09-25 13:30:50 +02:00
|
|
|
<?php namespace BookStack\Uploads;
|
2015-07-13 22:52:56 +02:00
|
|
|
|
2020-11-22 01:17:45 +01:00
|
|
|
use BookStack\Entities\Models\Page;
|
2020-12-30 19:25:35 +01:00
|
|
|
use BookStack\Model;
|
|
|
|
use BookStack\Traits\HasCreatorAndUpdater;
|
2015-12-09 20:50:17 +01:00
|
|
|
use Images;
|
|
|
|
|
2020-12-30 19:25:35 +01:00
|
|
|
class Image extends Model
|
2015-07-13 22:52:56 +02:00
|
|
|
{
|
2020-12-30 19:25:35 +01:00
|
|
|
use HasCreatorAndUpdater;
|
2015-08-16 01:18:22 +02:00
|
|
|
|
|
|
|
protected $fillable = ['name'];
|
2020-01-12 15:45:54 +01:00
|
|
|
protected $hidden = [];
|
2015-08-16 01:18:22 +02:00
|
|
|
|
2015-09-04 18:50:52 +02:00
|
|
|
/**
|
2015-12-09 20:50:17 +01:00
|
|
|
* Get a thumbnail for this image.
|
2018-05-13 13:07:38 +02:00
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
2015-12-14 21:13:32 +01:00
|
|
|
* @param bool|false $keepRatio
|
2015-12-09 23:30:55 +01:00
|
|
|
* @return string
|
2018-05-13 13:07:38 +02:00
|
|
|
* @throws \Exception
|
2015-09-04 18:50:52 +02:00
|
|
|
*/
|
2015-12-14 21:13:32 +01:00
|
|
|
public function getThumb($width, $height, $keepRatio = false)
|
2015-09-04 18:50:52 +02:00
|
|
|
{
|
2015-12-14 21:13:32 +01:00
|
|
|
return Images::getThumbnail($this, $width, $height, $keepRatio);
|
2015-09-04 18:50:52 +02:00
|
|
|
}
|
2019-05-04 16:48:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the page this image has been uploaded to.
|
|
|
|
* Only applicable to gallery or drawio image types.
|
|
|
|
* @return Page|null
|
|
|
|
*/
|
|
|
|
public function getPage()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Page::class, 'uploaded_to')->first();
|
|
|
|
}
|
2015-07-13 22:52:56 +02:00
|
|
|
}
|