| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * The editrelation view file of custom 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 Qiyu Xie<xieqiyu@chandao.com>
- * @package custom
- * @link https://www.zentao.net
- */
- namespace zin;
- jsVar('allRelationName', $allRelationName);
- jsVar('hasRelationTip', $lang->custom->hasRelationTip);
- formBatchPanel
- (
- set::mode('edit'),
- set::formID('relationForm'),
- set::data(array($relation)),
- set::title($lang->custom->editRelation),
- set::ajax(array('beforeSubmit' => jsRaw("clickSubmit"))),
- formBatchItem
- (
- set::width('1/2'),
- set::name('relation'),
- set::label($lang->custom->relation),
- set::required(true)
- ),
- formBatchItem
- (
- set::width('1/2'),
- set::name('relativeRelation'),
- set::label($lang->custom->relativeRelation),
- set::required(true)
- )
- );
|