| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace UCore\DcatAdmin\Show;
- use Dcat\Admin\Show\AbstractTool;
- class AbstractToolConfirm extends AbstractTool
- {
- protected $confirm_title = '';
- protected $confirm_content = '';
- /**
- * @return string
- */
- public function title(): string
- {
- return __($this->title);
- }
- public function confirm()
- {
- return [
- __($this->confirm_title),
- __($this->confirm_content)
- ];
- }
- }
|