14 lines
336 B
PHP
14 lines
336 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace itguild\forms\table\ActionColumn;
|
||
|
|
||
|
class DeleteActionColumn extends ActionColumn
|
||
|
{
|
||
|
protected string $prefix = "/form-delete/";
|
||
|
|
||
|
public function fetch(): string
|
||
|
{
|
||
|
$link = $this->baseUrl . $this->prefix . $this->id;
|
||
|
return " <a href='$link' class='btn btn-danger'>Удалить</a> ";
|
||
|
}
|
||
|
}
|