From 8bd86c4d9faec617e767ff7309a4d9c548627d6e Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Tue, 5 Jul 2022 14:39:39 +0800 Subject: [PATCH] * Init port module. --- module/port/config.php | 13 +++++++++++ module/port/control.php | 44 ++++++++++++++++++++++++++++++++++++++ module/port/lang/zh-cn.php | 11 ++++++++++ module/port/model.php | 0 4 files changed, 68 insertions(+) create mode 100644 module/port/config.php create mode 100644 module/port/control.php create mode 100644 module/port/lang/zh-cn.php create mode 100644 module/port/model.php diff --git a/module/port/config.php b/module/port/config.php new file mode 100644 index 0000000000..8fe827b3aa --- /dev/null +++ b/module/port/config.php @@ -0,0 +1,13 @@ +port = new stdclass(); + +$config->port->fieldList['title'] = ''; +$config->port->fieldList['width'] = ''; +$config->port->fieldList['required'] = ''; +$config->port->fieldList['fixed'] = ''; +$config->port->fieldList['control'] = ''; +$config->port->fieldList['values'] = ''; +$config->port->fieldList['class'] = ''; +$config->port->fieldList['sort'] = ''; + + diff --git a/module/port/control.php b/module/port/control.php new file mode 100644 index 0000000000..7a76856d4e --- /dev/null +++ b/module/port/control.php @@ -0,0 +1,44 @@ +importexport = new stdclass(); + +$lang->importexport->default->key['id'] = '编号'; +$lang->importexport->default->key['type'] = '类型'; +$lang->importexport->default->key['project'] = '所属项目'; +$lang->importexport->default->key['execution'] = '所属执行'; +$lang->importexport->default->key['product'] = '所属产品'; +$lang->importexport->default->key['code'] = '代号'; +$lang->importexport->default->key['name'] = '名称'; +$lang->importexport->default->key['title'] = '标题'; diff --git a/module/port/model.php b/module/port/model.php new file mode 100644 index 0000000000..e69de29bb2