f139cded78
* Temporarily moved back config path * Apply Laravel coding style * Shift exception handler * Shift HTTP kernel and middleware * Shift service providers * Convert options array to fluent methods * Shift to class based routes * Shift console routes * Ignore temporary framework files * Shift to class based factories * Namespace seeders * Shift PSR-4 autoloading * Shift config files * Default config files * Shift Laravel dependencies * Shift return type of base TestCase methods * Shift cleanup * Applied stylci style changes * Reverted config files location * Applied manual changes to Laravel 8 shift Co-authored-by: Shift <shift@laravelshift.com>
39 lines
978 B
PHP
39 lines
978 B
PHP
<?php
|
|
|
|
namespace BookStack\Actions;
|
|
|
|
use BookStack\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
class Tag extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['name', 'value', 'order'];
|
|
protected $hidden = ['id', 'entity_id', 'entity_type', 'created_at', 'updated_at'];
|
|
|
|
/**
|
|
* Get the entity that this tag belongs to.
|
|
*/
|
|
public function entity(): MorphTo
|
|
{
|
|
return $this->morphTo('entity');
|
|
}
|
|
|
|
/**
|
|
* Get a full URL to start a tag name search for this tag name.
|
|
*/
|
|
public function nameUrl(): string
|
|
{
|
|
return url('/search?term=%5B' . urlencode($this->name) . '%5D');
|
|
}
|
|
|
|
/**
|
|
* Get a full URL to start a tag name and value search for this tag's values.
|
|
*/
|
|
public function valueUrl(): string
|
|
{
|
|
return url('/search?term=%5B' . urlencode($this->name) . '%3D' . urlencode($this->value) . '%5D');
|
|
}
|
|
}
|