* Split program plan edit function.

This commit is contained in:
liuchenglong
2023-05-06 01:41:38 +00:00
parent e6849ef172
commit 158152c119
6 changed files with 228 additions and 116 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
$config->programplan->edit = new stdClass();
$config->programplan->edit->form = array();
$config->programplan->edit->form['begin'] = array('required' => false, 'type' => 'string', 'default' => '0000-00-00');
$config->programplan->edit->form['end'] = array('required' => false, 'type' => 'string', 'default' => '0000-00-00');
$config->programplan->edit->form['realBegan'] = array('required' => false, 'type' => 'string', 'default' => '0000-00-00');
$config->programplan->edit->form['realEnd'] = array('required' => false, 'type' => 'string', 'default' => '0000-00-00');
$config->programplan->edit->form['output'] = array('required' => false, 'type' => 'array', 'default' => array());