Files
EasySoft-ZenTaoPMS/module/holiday/ui/import.html.php
T
2023-11-07 02:34:26 +00:00

37 lines
890 B
PHP

<?php
declare(strict_types=1);
/**
* The import view file of holiday module of ZenTaoPMS.
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Mengyi Liu <liumengyi@easycorp.ltd>
* @package holiday
* @link https://www.zentao.net
*/
namespace zin;
formPanel
(
setClass('import-holiday-panel'),
set::formClass('mb-4'),
dtable
(
set::cols($this->config->holiday->dtable->import->fieldList),
set::data($holidays)
),
formRow
(
setClass('hidden'),
formGroup
(
set::label(''),
set::name('submit'),
set::control('hidden'),
set::value('')
)
)
);
render();