Files
EasySoft-ZenTaoPMS/module/custom/ui/kanban.html.php
T

44 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
/**
* The execution view file of custom 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 Shujie Tian<tianshujie@easycorp.ltd>
* @package custom
* @link https://www.zentao.net
*/
namespace zin;
div
(
setClass('flex'),
formPanel
(
setID('closedExecutionForm'),
set::actions(array('submit')),
setClass('flex-auto'),
formGroup
(
set::width('2/3'),
set::label($lang->custom->closedKanban),
radioList
(
set::name('kanban'),
set::items($lang->custom->CRKanban),
set::value(isset($config->CRKanban) ? $config->CRKanban : 0),
set::inline(true)
)
),
formGroup
(
set::label(''),
span
(
icon('info text-warning mr-2'),
$lang->custom->notice->readOnlyOfKanban
)
)
)
);