16 lines
347 B
PHP
16 lines
347 B
PHP
<?php
|
|
|
|
namespace itguild\forms\table\ActionColumn;
|
|
|
|
class EditActionColumn extends ActionColumn
|
|
{
|
|
|
|
protected string $prefix = "/form-edit/";
|
|
|
|
public function fetch(): string
|
|
{
|
|
$link = $this->baseUrl . $this->prefix . $this->id;
|
|
return " <a href='$link' class='btn btn-primary'>Редактировать</a> ";
|
|
}
|
|
|
|
} |