BookStack/app/Image.php

27 lines
497 B
PHP
Raw Normal View History

2015-07-13 20:52:56 +00:00
<?php
namespace BookStack;
2015-07-13 20:52:56 +00:00
2015-12-09 22:30:55 +00:00
use Illuminate\Database\Eloquent\Model;
use Images;
2015-12-09 22:30:55 +00:00
class Image extends Model
2015-07-13 20:52:56 +00:00
{
use Ownable;
2015-08-15 23:18:22 +00:00
protected $fillable = ['name'];
/**
* 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
*/
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);
}
2015-07-13 20:52:56 +00:00
}