* [task#141578,doing,0.5h] add form config.

This commit is contained in:
sunguangming
2025-04-16 10:18:25 +08:00
committed by 刘刚
parent f29708da3f
commit be912d5aa5
+8
View File
@@ -0,0 +1,8 @@
<?php
$config->deliverable->form = new stdclass();
$config->deliverable->form->create = array();
$config->deliverable->form->create['name'] = array('type' => 'string', 'required' => true);
$config->deliverable->form->create['module'] = array('type' => 'string', 'required' => true);
$config->deliverable->form->create['method'] = array('type' => 'string', 'required' => true);
$config->deliverable->form->create['model'] = array('type' => 'string', 'required' => true);
$config->deliverable->form->create['desc'] = array('type' => 'text', 'required' => false, 'control' => 'editor');