13 lines
309 B
PHP
13 lines
309 B
PHP
|
<?php
|
||
|
|
||
|
namespace itguild\forms\table\actionBtn;
|
||
|
|
||
|
class ToListBtn extends ActionBtn
|
||
|
{
|
||
|
protected string $prefix = "/form-result/";
|
||
|
|
||
|
public function fetch(): string
|
||
|
{
|
||
|
return "<a class='btn btn-primary' href='$this->baseUrl$this->prefix$this->id' style='margin: 3px'>Список</a>";
|
||
|
}
|
||
|
}
|