2015-07-13 16:52:56 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack;
|
2015-07-13 16:52:56 -04:00
|
|
|
|
|
|
|
|
2015-12-09 17:30:55 -05:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2015-12-09 14:50:17 -05:00
|
|
|
use Images;
|
|
|
|
|
2015-12-09 17:30:55 -05:00
|
|
|
class Image extends Model
|
2015-07-13 16:52:56 -04:00
|
|
|
{
|
2015-12-09 14:50:17 -05:00
|
|
|
use Ownable;
|
2015-08-15 19:18:22 -04:00
|
|
|
|
|
|
|
protected $fillable = ['name'];
|
|
|
|
|
2015-09-04 12:50:52 -04:00
|
|
|
/**
|
2015-12-09 14:50:17 -05:00
|
|
|
* Get a thumbnail for this image.
|
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
2015-12-14 15:13:32 -05:00
|
|
|
* @param bool|false $keepRatio
|
2015-12-09 17:30:55 -05:00
|
|
|
* @return string
|
2015-09-04 12:50:52 -04:00
|
|
|
*/
|
2015-12-14 15:13:32 -05:00
|
|
|
public function getThumb($width, $height, $keepRatio = false)
|
2015-09-04 12:50:52 -04:00
|
|
|
{
|
2015-12-14 15:13:32 -05:00
|
|
|
return Images::getThumbnail($this, $width, $height, $keepRatio);
|
2015-09-04 12:50:52 -04:00
|
|
|
}
|
2015-07-13 16:52:56 -04:00
|
|
|
}
|