13 lines
321 B
PHP
13 lines
321 B
PHP
<?php
|
|
|
|
namespace itguild\forms\table\actionBtn;
|
|
|
|
class ToEditBtn extends ActionBtn
|
|
{
|
|
protected string $prefix = "/form-edit/";
|
|
|
|
public function fetch(): string
|
|
{
|
|
return "<a class='btn btn-warning' href='$this->baseUrl$this->prefix$this->id' style='margin: 3px'>Редактировать</a>";
|
|
}
|
|
} |