2015-07-13 22:52:56 +02:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 20:31:09 +02:00
|
|
|
namespace BookStack;
|
2015-07-13 22:52:56 +02:00
|
|
|
|
|
|
|
|
2015-12-09 23:30:55 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2015-12-09 20:50:17 +01:00
|
|
|
use Images;
|
|
|
|
|
2015-12-09 23:30:55 +01:00
|
|
|
class Image extends Model
|
2015-07-13 22:52:56 +02:00
|
|
|
{
|
2015-12-09 20:50:17 +01:00
|
|
|
use Ownable;
|
2015-08-16 01:18:22 +02:00
|
|
|
|
|
|
|
protected $fillable = ['name'];
|
|
|
|
|
2015-09-04 18:50:52 +02:00
|
|
|
/**
|
2015-12-09 20:50:17 +01:00
|
|
|
* Get a thumbnail for this image.
|
|
|
|
* @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
|
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
|
|
|
}
|
2015-07-13 22:52:56 +02:00
|
|
|
}
|