3eaf03a7ac
- Refactored some tag code bits while reviewing. - Updated tag design in search listing to be more subtle. - Moved tags out of entity-list-item-basic template and instead moved them into entity-list-item, below the existing content. - Tweaked existing tag colors a little. - Changed tag icon to be more tag-like. - Added tag-on-search test case. Review of #2487, Related to #2462
34 lines
898 B
PHP
34 lines
898 B
PHP
<?php namespace BookStack\Actions;
|
|
|
|
use BookStack\Model;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
class Tag extends Model
|
|
{
|
|
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');
|
|
}
|
|
}
|