14 lines
325 B
PHP
14 lines
325 B
PHP
<?php
|
|
|
|
namespace Itguild\Tables\ActionColumn;
|
|
|
|
class ViewActionColumn extends ActionColumn
|
|
{
|
|
protected string $prefix = "/view/";
|
|
|
|
public function fetch(): string
|
|
{
|
|
$link = $this->baseUrl . $this->prefix . $this->id;
|
|
return " <a href='$link' class='btn btn-primary'>Просмотр</a> ";
|
|
}
|
|
} |