123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Admin\Controllers\RowAction;
- use Encore\Admin\Actions\RowAction;
- /**
- * 自定义按钮选项
- */
- class CustomAction extends RowAction
- {
- /**
- * @var string 跳转网址
- */
- private $href;
- public function __construct(string $name,string $href)
- {
- $this->name = $name;
- $this->href = $href;
- parent::__construct();
- }
- public function name()
- {
- return $this->name;
- }
- public function href()
- {
- return $this->href;
- }
- }
|