14 lines
335 B
PHP
14 lines
335 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace itguild\forms\table\ActionColumn;
|
||
|
|
||
|
class ViewActionColumn extends ActionColumn
|
||
|
{
|
||
|
protected string $prefix = "/form-item/";
|
||
|
|
||
|
public function fetch(): string
|
||
|
{
|
||
|
$link = $this->baseUrl . $this->prefix . $this->id;
|
||
|
return " <a href='$link' class='btn btn-primary'>Просмотр</a> ";
|
||
|
}
|
||
|
}
|