meraproject/module/ui/input/cancel/model.php

8 lines
245 B
PHP
Raw Permalink Normal View History

<?
namespace ui\input;
class Cancel extends Input{
public function render(array $opt = array()): string {
return '<a class="btn btn-danger" name="'.$this->name.'" href="'.$this->options[Input::LINK].'">'.$this->label.'</a>';
}
}