* Init port module.

This commit is contained in:
tanghucheng
2022-07-05 14:39:39 +08:00
parent a7919cd8f1
commit 8bd86c4d9f
4 changed files with 68 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
$config->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'] = '';
+44
View File
@@ -0,0 +1,44 @@
<?php
/**
* Export datas.
*
* @access public
* @return void
*/
public function export()
{
}
/**
* Export Template.
*
* @access public
* @return void
*/
public function exportTemplate()
{
}
/**
* Import.
*
* @access public
* @return void
*/
public function import()
{
}
/**
* Show Import datas .
*
* @access public
* @return void
*/
public function showImport()
{
}
+11
View File
@@ -0,0 +1,11 @@
<?php
$lang->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'] = '标题';
View File