* Add notify help manual link.

This commit is contained in:
chenfeiCF
2018-12-20 17:18:25 +08:00
parent dd1c5e0715
commit b8647efe18
5 changed files with 6 additions and 1 deletions

View File

@@ -5,7 +5,8 @@ $config->entry->create->requiredFields = 'name, code, account, key';
$config->entry->edit = new stdclass();
$config->entry->edit->requiredFields = 'name, code, account, key';
$config->entry->help = 'https://www.zentao.net/book/zentaopmshelp/integration-287.html';
$config->entry->help = 'https://www.zentao.net/book/zentaopmshelp/integration-287.html';
$config->entry->notify = 'https://www.zentao.net/book/zentaopmshelp/301.html';
$config->entry->errcode['PARAM_CODE_MISSING'] = 401;
$config->entry->errcode['PARAM_TOKEN_MISSING'] = 401;

View File

@@ -28,6 +28,7 @@ $lang->entry->url = 'Request URL';
$lang->entry->confirmDelete = 'Are you sure delete this entry?';
$lang->entry->help = 'Help';
$lang->entry->notify = 'Notify';
$lang->entry->note = new stdClass();
$lang->entry->note->name = 'Name';

View File

@@ -28,6 +28,7 @@ $lang->entry->url = '请求地址';
$lang->entry->confirmDelete = '您确认要删除该应用吗?';
$lang->entry->help = '使用说明';
$lang->entry->notify = '消息通知';
$lang->entry->note = new stdClass();
$lang->entry->note->name = '授权应用名称';

View File

@@ -62,6 +62,7 @@
<td>
<?php echo html::submitButton();?>
<?php echo html::a($config->entry->help, $lang->entry->help, '_blank', "class='help'");?>
<?php echo html::a($config->entry->notify, $lang->entry->notify, '_blank', "class='help'");?>
</td>
<td></td>
</tr>

View File

@@ -60,6 +60,7 @@
<td>
<?php echo html::submitButton();?>
<?php echo html::a($config->entry->help, $lang->entry->help, '_blank', "class='help'");?>
<?php echo html::a($config->entry->notify, $lang->entry->notify, '_blank', "class='help'");?>
</td>
</tr>
</table>