2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Oxbow;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2015-08-16 09:51:45 -04:00
|
|
|
class Page extends Entity
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
protected $fillable = ['name', 'html', 'priority'];
|
|
|
|
|
2015-07-20 17:05:26 -04:00
|
|
|
protected $simpleAttributes = ['name', 'id', 'slug'];
|
|
|
|
|
|
|
|
public function toSimpleArray()
|
|
|
|
{
|
|
|
|
$array = array_intersect_key($this->toArray(), array_flip($this->simpleAttributes));
|
|
|
|
$array['url'] = $this->getUrl();
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
2015-07-12 16:31:15 -04:00
|
|
|
public function book()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Oxbow\Book');
|
|
|
|
}
|
|
|
|
|
2015-07-30 17:27:35 -04:00
|
|
|
public function chapter()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Oxbow\Chapter');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasChapter()
|
|
|
|
{
|
|
|
|
return $this->chapter()->count() > 0;
|
|
|
|
}
|
|
|
|
|
2015-07-20 17:05:26 -04:00
|
|
|
|
2015-08-09 07:06:52 -04:00
|
|
|
public function revisions()
|
|
|
|
{
|
|
|
|
return $this->hasMany('Oxbow\PageRevision')->orderBy('created_at', 'desc');
|
|
|
|
}
|
|
|
|
|
2015-07-12 16:31:15 -04:00
|
|
|
public function getUrl()
|
|
|
|
{
|
2015-07-27 15:17:08 -04:00
|
|
|
return '/books/' . $this->book->slug . '/page/' . $this->slug;
|
2015-07-12 16:31:15 -04:00
|
|
|
}
|
2015-07-20 17:05:26 -04:00
|
|
|
|
2015-07-30 17:27:35 -04:00
|
|
|
public function getExcerpt($length = 100)
|
|
|
|
{
|
|
|
|
return strlen($this->text) > $length ? substr($this->text, 0, $length-3) . '...' : $this->text;
|
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|