mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
30 lines
744 B
PHP
30 lines
744 B
PHP
<?php namespace BookStack;
|
|
|
|
|
|
class Chapter extends Entity
|
|
{
|
|
protected $fillable = ['name', 'description', 'priority', 'book_id'];
|
|
|
|
public function book()
|
|
{
|
|
return $this->belongsTo('BookStack\Book');
|
|
}
|
|
|
|
public function pages()
|
|
{
|
|
return $this->hasMany('BookStack\Page')->orderBy('priority', 'ASC');
|
|
}
|
|
|
|
public function getUrl()
|
|
{
|
|
$bookSlug = $this->getAttribute('bookSlug') ? $this->getAttribute('bookSlug') : $this->book->slug;
|
|
return '/books/' . $bookSlug. '/chapter/' . $this->slug;
|
|
}
|
|
|
|
public function getExcerpt($length = 100)
|
|
{
|
|
return strlen($this->description) > $length ? substr($this->description, 0, $length-3) . '...' : $this->description;
|
|
}
|
|
|
|
}
|