| 12345678910111213141516171819 |
- <?php
- namespace Dcat\Admin\Grid\Displayers;
- class Link extends AbstractDisplayer
- {
- public function display($href = '', $target = '_blank')
- {
- if ($href instanceof \Closure) {
- $href = $href->bindTo($this->row);
- $href = call_user_func($href, $this->value);
- } else {
- $href = $href ?: $this->value;
- }
- return "<a href='$href' target='$target'>{$this->value}</a>";
- }
- }
|