bookstack/app/Image.php

43 lines
1021 B
PHP
Raw Normal View History

<?php namespace BookStack;
2015-07-14 04:52:56 +08:00
use Images;
class Image extends Ownable
2015-07-14 04:52:56 +08:00
{
2015-08-16 07:18:22 +08:00
protected $fillable = ['name'];
/**
* Get a thumbnail for this image.
* @param int $width
* @param int $height
2015-12-15 04:13:32 +08:00
* @param bool|false $keepRatio
2015-12-10 06:30:55 +08:00
* @return string
* @throws \Exception
*/
2015-12-15 04:13:32 +08:00
public function getThumb($width, $height, $keepRatio = false)
{
2015-12-15 04:13:32 +08:00
return Images::getThumbnail($this, $width, $height, $keepRatio);
}
/**
* Get the revisions for this image.
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function revisions()
{
return $this->hasMany(ImageRevision::class);
}
/**
* Get the count of revisions made to this image.
* Based off numbers on revisions rather than raw count of attached revisions
* as they may be cleared up or revisions deleted at some point.
* @return int
*/
public function revisionCount()
{
return intval($this->revisions()->max('revision'));
}
2015-07-14 04:52:56 +08:00
}