fix to psr4

This commit is contained in:
2024-07-15 16:25:03 +03:00
parent f9fc6b9f17
commit 4bdd883d67
8 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace Itguild\Tables\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>";
}
}