| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace UCore\DcatAdmin\Form;
- class Link extends \Dcat\Admin\Grid\Tools\AbstractTool
- {
- protected $title = '链接';
- protected $link = '';
- /**
- * 获取链接地址
- * 子类应该重写此方法以提供具体的链接地址
- *
- * @return string
- */
- public function linkHref(): string
- {
- return $this->link ?: '#';
- }
- public function html()
- {
- return <<<EOT
- <div class="btn-group pull-right" style="margin-right: 5px">
- <a href="{$this->linkHref()}" class="btn btn-sm btn-primary "><i class="feather icon-list"></i><span class="d-none d-sm-inline"> {$this->title()}</span></a>
- </div>
- EOT;
- }
- }
|