BookStack/app/Uploads/Image.php

38 lines
882 B
PHP
Raw Normal View History

<?php namespace BookStack\Uploads;
2015-07-13 20:52:56 +00:00
use BookStack\Entities\Models\Page;
use BookStack\Model;
use BookStack\Traits\HasCreatorAndUpdater;
use Images;
class Image extends Model
2015-07-13 20:52:56 +00:00
{
use HasCreatorAndUpdater;
2015-08-15 23:18:22 +00:00
protected $fillable = ['name'];
protected $hidden = [];
2015-08-15 23:18:22 +00:00
/**
* Get a thumbnail for this image.
* @param int $width
* @param int $height
2015-12-14 20:13:32 +00:00
* @param bool|false $keepRatio
2015-12-09 22:30:55 +00:00
* @return string
* @throws \Exception
*/
2015-12-14 20:13:32 +00:00
public function getThumb($width, $height, $keepRatio = false)
{
2015-12-14 20:13:32 +00:00
return Images::getThumbnail($this, $width, $height, $keepRatio);
}
/**
* 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 20:52:56 +00:00
}