ConfigTimeEditAction.php 479 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Module\System\Admin\Actions;
  3. use App\Module\System\Enums\CONFIG_TYPE;
  4. /**
  5. * 时间,秒 动作
  6. */
  7. class ConfigTimeEditAction extends \UCore\DcatAdmin\RowAction
  8. {
  9. protected $title = '修改数值';
  10. use ConfigEditAction;
  11. public function allowed()
  12. {
  13. return $this->getRow()->type == CONFIG_TYPE::TYPE_TIME->valueInt();
  14. }
  15. public function configEditForm(): string
  16. {
  17. return ConfigTimeEditForm::class;
  18. }
  19. }