| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Module\System\Admin\Actions;
- use App\Module\System\Enums\CONFIG_TYPE;
- /**
- * 数字 动作
- */
- class ConfigIntEditAction extends \UCore\DcatAdmin\RowAction
- {
- protected $title = '修改数值';
- use ConfigEditAction;
- public function configEditForm()
- {
- return ConfigIntEditForm::class;
- }
- public function allowed()
- {
- return $this->getRow()->type == CONFIG_TYPE::TYPE_INT->valueInt();
- }
- }
|