39 lines
983 B
PHP
39 lines
983 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The expect file of stakeholder module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Wang Yidong <yidong@cnezsoft.com>
|
|
* @package stakeholder
|
|
* @link https://www.zentao.net
|
|
*/
|
|
namespace zin;
|
|
|
|
modalHeader(set::entityID($user->id), set::entityText($user->name));
|
|
formPanel
|
|
(
|
|
set::submitBtnText($lang->save),
|
|
formGroup
|
|
(
|
|
set::label($lang->stakeholder->expect),
|
|
set::required(true),
|
|
editor
|
|
(
|
|
set::name('expect'),
|
|
set::rows(5)
|
|
)
|
|
),
|
|
formGroup
|
|
(
|
|
set::label($lang->stakeholder->progress),
|
|
set::required(true),
|
|
editor
|
|
(
|
|
set::name('progress'),
|
|
set::rows(5)
|
|
)
|
|
)
|
|
);
|