BookStack/app/Book.php

56 lines
1.2 KiB
PHP
Raw Normal View History

<?php namespace BookStack;
2015-07-12 19:01:42 +00:00
class Book extends Entity
2015-07-12 19:01:42 +00:00
{
protected $fillable = ['name', 'description'];
/**
* Get the url for this book.
* @return string
*/
2015-07-12 19:01:42 +00:00
public function getUrl()
{
return '/books/' . $this->slug;
}
/*
* Get the edit url for this book.
* @return string
*/
2015-07-12 19:01:42 +00:00
public function getEditUrl()
{
return $this->getUrl() . '/edit';
}
/**
* Get all pages within this book.
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
2015-07-12 20:31:15 +00:00
public function pages()
{
return $this->hasMany(Page::class);
2015-07-12 20:31:15 +00:00
}
/**
* Get all chapters within this book.
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
2015-07-27 19:17:08 +00:00
public function chapters()
{
return $this->hasMany(Chapter::class);
2015-07-27 19:17:08 +00:00
}
/**
* Get an excerpt of this book's description to the specified length or less.
* @param int $length
* @return string
*/
public function getExcerpt($length = 100)
{
$description = $this->description;
return strlen($description) > $length ? substr($description, 0, $length-3) . '...' : $description;
}
2015-07-12 19:01:42 +00:00
}