2016-03-09 17:32:07 -05:00
|
|
|
<?php namespace BookStack;
|
2015-08-09 07:06:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class PageRevision extends Model
|
|
|
|
{
|
2016-03-25 10:41:15 -04:00
|
|
|
protected $fillable = ['name', 'html', 'text', 'markdown'];
|
2015-08-09 07:06:52 -04:00
|
|
|
|
2016-03-09 17:32:07 -05:00
|
|
|
/**
|
|
|
|
* Get the user that created the page revision
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2015-08-09 07:06:52 -04:00
|
|
|
public function createdBy()
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(User::class, 'created_by');
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
2016-03-09 17:32:07 -05:00
|
|
|
/**
|
|
|
|
* Get the page this revision originates from.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2015-08-09 07:06:52 -04:00
|
|
|
public function page()
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(Page::class);
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
2016-03-09 17:32:07 -05:00
|
|
|
/**
|
|
|
|
* Get the url for this revision.
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-08-09 07:06:52 -04:00
|
|
|
public function getUrl()
|
|
|
|
{
|
|
|
|
return $this->page->getUrl() . '/revisions/' . $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|