| 1234567891011121314151617 |
- <?php
- namespace UCore\DcatAdmin\Grid\Tool;
- use Dcat\Admin\Grid\Tools\AbstractTool;
- class HrefAbstractTool extends AbstractTool
- {
- public function html()
- {
- $this->appendHtmlAttribute('class', $this->style);
- return <<<HTML
- <a {$this->formatHtmlAttributes()}>{$this->title()}</a>
- HTML; }
- }
|