CustomAction.php 527 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Admin\Controllers\RowAction;
  3. use Encore\Admin\Actions\RowAction;
  4. /**
  5. * 自定义按钮选项
  6. */
  7. class CustomAction extends RowAction
  8. {
  9. /**
  10. * @var string 跳转网址
  11. */
  12. private $href;
  13. public function __construct(string $name,string $href)
  14. {
  15. $this->name = $name;
  16. $this->href = $href;
  17. parent::__construct();
  18. }
  19. public function name()
  20. {
  21. return $this->name;
  22. }
  23. public function href()
  24. {
  25. return $this->href;
  26. }
  27. }