| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace UCore\DcatAdmin\Show;
- use Dcat\Admin\Show\AbstractTool;
- /**
- *
- * 详情页面的动作
- */
- class AbstractTool2 extends AbstractTool
- {
- public function getRow()
- {
- return $this->parent->model();
- }
- /**
- * @return string
- */
- public function title(): string
- {
- return __($this->title);
- }
- public function render()
- {
- if (!$this->allowed()) {
- return '';
- }
- return $this->render2();
- }
- }
|