option CRUD
This commit is contained in:
20
kernel/modules/option/models/forms/CreateOptionForm.php
Normal file
20
kernel/modules/option/models/forms/CreateOptionForm.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace kernel\modules\option\models\forms;
|
||||
|
||||
use kernel\FormModel;
|
||||
|
||||
class CreateOptionForm extends FormModel
|
||||
{
|
||||
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'admin_theme_paths' => '',
|
||||
'active_admin_theme' => '',
|
||||
'module_paths' => '',
|
||||
'active_modules' => ''
|
||||
];
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user