13 lines
312 B
PHP
13 lines
312 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace itguild\forms\table\actionBtn;
|
||
|
|
||
|
class ToDeleteBtn extends ActionBtn
|
||
|
{
|
||
|
protected string $prefix = "/form-delete/";
|
||
|
|
||
|
public function fetch(): string
|
||
|
{
|
||
|
return "<a class='btn btn-danger' href='$this->baseUrl$this->prefix$this->id' style='margin: 3px'>Удалить</a>";
|
||
|
}
|
||
|
}
|