MicroFrameWork/app/tables/columns/UserDeleteActionColumn.php

17 lines
391 B
PHP
Raw Normal View History

2024-07-25 16:15:18 +03:00
<?php
namespace app\tables\columns;
2024-07-26 11:57:05 +03:00
use app\helpers\Debug;
2024-07-25 16:15:18 +03:00
use Itguild\Tables\ActionColumn\ActionColumn;
class UserDeleteActionColumn extends ActionColumn
{
2024-07-26 16:09:06 +03:00
protected string $prefix = "/delete/";
2024-07-25 16:15:18 +03:00
public function fetch(): string
{
2024-07-26 16:09:06 +03:00
$link = $this->baseUrl . $this->prefix . $this->id;
2024-07-25 16:15:18 +03:00
return " <a href='$link' class='btn btn-danger'>Удалить</a> ";
}
}