BookStack/app/Page.php

41 lines
829 B
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace Oxbow;
use Illuminate\Database\Eloquent\Model;
class Page extends Model
{
2015-07-12 20:31:15 +00:00
protected $fillable = ['name', 'html', 'priority'];
2015-07-20 21:05:26 +00: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 20:31:15 +00:00
public function book()
{
return $this->belongsTo('Oxbow\Book');
}
2015-07-20 21:05:26 +00:00
public function children()
{
2015-07-21 19:13:29 +00:00
return $this->hasMany('Oxbow\Page')->orderBy('priority', 'ASC');
2015-07-20 21:05:26 +00:00
}
public function parent()
{
return $this->belongsTo('Oxbow\Page', 'page_id');
}
2015-07-12 20:31:15 +00:00
public function getUrl()
{
return '/books/' . $this->book->slug . '/' . $this->slug;
}
2015-07-20 21:05:26 +00:00
2015-07-12 19:01:42 +00:00
}