| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * The activate view file of opportunity module of ZenTaoPMS.
- * @copyright Copyright 2009-2024 禅道软件(青岛)有限公司(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@chandao.com>
- * @package opportunity
- * @link https://www.zentao.net
- */
- namespace zin;
- modalHeader(set::title($lang->opportunity->activate));
- formPanel
- (
- formGroup
- (
- set::label($lang->opportunity->assignedTo),
- set::width('1/2'),
- set::name('assignedTo'),
- set::items($members),
- set::value($app->user->account)
- ),
- formGroup
- (
- set::label($lang->comment),
- set::name('comment'),
- set::control('editor'),
- set::rows(6)
- )
- );
|