This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
使用自定义插件自定义网关门户
NetScaler Gateway RfWebUi 框架提供了添加自定义插件以自定义其网关门户的功能。这些自定义插件可用于向网关添加大型功能,例如,如果您想在网关流中添加一个全新的页面。对于其他用例,可以将代码添加到位置/var/netscaler/logon/themes/<custom_theme>/script.js
为网关主题提供的自定义脚本文件中。
注意:
NetScaler Gateway 仅支持创建和使用用于自定义门户的定制插件。NetScaler Gateway 不会根据客户要求创建或提供任何定制插件。
-
要添加自定义插件,请在
/var/netscaler/logon/LogonPoint/plugins/ns-gateway/
位置创建 JavaScript 文件。例如,您可以在/var/netscaler/logon/LogonPoint/plugins/ns-gateway/
中找到以下插件。-
ns-nfactor.js
-
nsg-epa.js
-
nsg-setclient.js
建议以
<plugin_name>
.js 格式输入插件名称。所有这些插件文件都是由功能所需的 RfWebUI 框架提取的。
-
-
创建插件文件后,使用以下代码作为示例向 RfWebUI 框架注册插件。
(function ($) { CTXS.ExtensionAPI.addPlugin( { Name : “plugin name”, initialize: function() {} }); })(jQuery); <!--NeedCopy-->
其中,
name 是给插件的名称。它用作插件的标识符。
initialize 接受函数作为用于初始化插件的参数。
-
在函数中输入插件名称和初始化
CTXS.ExtensionAPI.addPlugin()
函数以注册插件。 添加的插件名称和位置必须注册到/var/netscaler/logon/themes/<custom_theme>/plugins.xml
位置的 plugins.xml 文件中。 -
编写插件代码后,必须在
/var/netscaler/logon/themes/<custom_theme>/plugins.xml
位置的plugins.xml
文件中注册新添加的插件名称和位置。插件必须使用plug-in
标记注册。<plugins> <plugin name="nsg-epa" src="plugins/ns-gateway/nsg-epa.js"/> <plugin name="nsg-setclient" src="plugins/ns-gateway/nsg-setclient.js"/> <plugin name="ns-nfactorn" src="plugins/ns-gateway/ns-nfactor.js"/> </plugins> <!--NeedCopy-->
-
输入插件的名称和 src,以便 RFWebUI 可以识别和获取插件。
示例配置
以下示例配置可用于添加自定义插件,以向 NetScaler Gateway 登录页面添加页脚。
- 在
/var/netscaler/logon/LogonPoint/plugins/ns-gateway/.
位置创建 JavaScript 插件文件 - 将插件命名为 ns-footer.js
/var/netscaler/logon/LogonPoint/plugins/ns-gateway/ns-footer.js
-
将以下代码添加到 RfWebUI 的注册插件中,然后在初始化函数中将页脚添加到网关。
(function ($) { CTXS.ExtensionAPI.addPlugin({ name: "ns-footer", // Name of plugin - must match name sent in configuration initialize: function () { CTXS.Extensions.beforeLogon = function (callback) { $("#customExplicitAuthBottom").append("<div style='text-align:center;color:white;font-size:15px;'><br>Disclaimer<BR><BR>"+ " Access to this website is restricted to employees of Login Consultants<BR></div>"); callback(); }; } }); })(jQuery); <!--NeedCopy-->
- 保存该文件。
-
在
var/netscaler/logon/themes/<custom_theme>/plugins.xml
位置的 plugins.xml 中添加名称和 src。<plugins> <plugin name="nsg-epa" src="plugins/ns-gateway/nsg-epa.js" /> <plugin name="nsg-setclient" src="plugins/ns-gateway/nsg-setclient.js" /> <plugin name="ns-nfactor" src="plugins/ns-gateway/ns-nfactor.js" /> <plugin name="ns-footer" src="plugins/ns-gateway/ns-footer.js" /> </plugins> <!--NeedCopy-->
- 配置要为其添加插件的自定义主题。
- 使用命令
flush cache contentgroup loginstaticobjects
刷新缓存。 - 重新加载入口屏幕。 页脚将添加到 NetScaler Gateway 登录页面中。
共享
共享
在本文中
This Preview product documentation is Cloud Software Group Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Cloud Software Group Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Cloud Software Group product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.