101 lines
3.8 KiB
PHP
101 lines
3.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The create view file of webhook 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 Yidong Wang <yidong@easycorp.ltd>
|
|
* @package webhook
|
|
* @link https://www.zentao.net
|
|
*/
|
|
namespace zin;
|
|
|
|
$fields = $config->webhook->form->create;
|
|
$defaultWidth = '1/2';
|
|
$formItems = array();
|
|
foreach($fields as $field => $attr)
|
|
{
|
|
$width = zget($attr, 'width', $defaultWidth);
|
|
$fieldName = $field;
|
|
$notice = '';
|
|
$required = zget($attr, 'required', false);
|
|
$rowID = '';
|
|
$rowClass = '';
|
|
$title = $field;
|
|
$control = array();
|
|
|
|
if($field == 'domain') $attr['default'] = common::getSysURL();
|
|
if($field == 'products') $attr['options'] = $products;
|
|
if($field == 'executions') $attr['options'] = $executions;
|
|
|
|
$control['type'] = $attr['control'];
|
|
if($attr['control'] == 'picker') $control['items'] = array();
|
|
if(!empty($attr['options'])) $control['items'] = $attr['options'];
|
|
if(!empty($attr['inline'])) $control['inline'] = $attr['inline'];
|
|
if($attr['control'] == 'checkList') $fieldName = $field . '[]';
|
|
if(!empty($attr['multiple']))
|
|
{
|
|
$control['multiple'] = true;
|
|
$fieldName = $field . '[]';
|
|
}
|
|
|
|
if(isset($lang->webhook->{$field})) $title = $lang->webhook->{$field};
|
|
if($field == 'appKey') $title = $lang->webhook->dingAppKey;
|
|
if($field == 'appSecret') $title = $lang->webhook->dingAppSecret;
|
|
if($field == 'agentId') $title = $lang->webhook->dingAgentId;
|
|
if($field == 'products') $title = $lang->webhook->product;
|
|
if($field == 'executions') $title = $lang->webhook->execution;
|
|
|
|
if($field == 'secret') $rowID = 'secretTR';
|
|
if($field == 'url') $rowID = 'urlTR';
|
|
if($field == 'sendType') $rowID = 'sendTypeTR';
|
|
|
|
if($field == 'wechatCorpId') $notice = $lang->webhook->note->wechatHelp;
|
|
if($field == 'url') $notice = $lang->webhook->note->typeList['default'];
|
|
if($field == 'agentId') $notice = $lang->webhook->note->dingHelp;
|
|
if($field == 'sendType') $notice = $lang->webhook->note->async;
|
|
if($field == 'products') $notice = $lang->webhook->note->product;
|
|
if($field == 'executions') $notice = $lang->webhook->note->execution;
|
|
|
|
if($field == 'agentId' || $field == 'appKey' || $field == 'appSecret') $rowClass = 'dinguserTR';
|
|
if($field == 'feishuAppId' || $field == 'feishuAppSecret') $rowClass = 'feishuTR';
|
|
if($field == 'wechatCorpId' || $field == 'wechatCorpSecret' || $field == 'wechatAgentId') $rowClass = 'wechatTR';
|
|
|
|
if($field == 'agentId' || $field == 'appKey' || $field == 'appSecret') $required = true;
|
|
if($field == 'feishuAppId' || $field == 'feishuAppSecret') $required = true;
|
|
if($field == 'wechatCorpId' || $field == 'wechatCorpSecret' || $field == 'wechatAgentId') $required = true;
|
|
if($field == 'type') $required = true;
|
|
|
|
$formItems[] = formRow
|
|
(
|
|
$rowID ? setID($rowID) : null,
|
|
$rowClass ? setClass($rowClass) : null,
|
|
formGroup
|
|
(
|
|
set::width($width),
|
|
set::name($fieldName),
|
|
set::label($title),
|
|
set::control($control),
|
|
set::value($attr['default']),
|
|
set::required($required)
|
|
),
|
|
$notice ? formGroup
|
|
(
|
|
$field == 'url' ? setID('urlNote') : null,
|
|
set::style(array('align-items' => 'center')),
|
|
html($notice)
|
|
) : null
|
|
);
|
|
}
|
|
|
|
jsVar('urlNote', $lang->webhook->note->typeList);
|
|
|
|
formPanel
|
|
(
|
|
on::change('[name=type]', 'changeType'),
|
|
$formItems
|
|
);
|
|
|
|
render();
|
|
|