BookStack/app/PageRevision.php

37 lines
820 B
PHP
Raw Normal View History

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