BookStack/app/Actions/Tag.php

46 lines
1.1 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Actions;
use BookStack\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\MorphTo;
2016-05-06 19:33:08 +00:00
/**
* @property int $id
* @property string $name
* @property string $value
* @property int $order
*/
class Tag extends Model
2016-05-06 19:33:08 +00:00
{
use HasFactory;
2016-05-12 22:12:05 +00:00
protected $fillable = ['name', 'value', 'order'];
protected $hidden = ['id', 'entity_id', 'entity_type', 'created_at', 'updated_at'];
2016-05-06 19:33:08 +00:00
/**
2021-06-26 15:23:15 +00:00
* Get the entity that this tag belongs to.
2016-05-06 19:33:08 +00:00
*/
public function entity(): MorphTo
2016-05-06 19:33:08 +00:00
{
return $this->morphTo('entity');
}
/**
* Get a full URL to start a tag name search for this tag name.
*/
public function nameUrl(): string
{
2021-06-26 15:23:15 +00:00
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
{
2021-06-26 15:23:15 +00:00
return url('/search?term=%5B' . urlencode($this->name) . '%3D' . urlencode($this->value) . '%5D');
}
}