BookStack/app/Image.php

27 lines
494 B
PHP
Raw Normal View History

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