✏️ 正在编辑: administration.authentication.edit.js.php
路径:
/usr/share/zabbix/app/views/js/administration.authentication.edit.js.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /* ** Zabbix ** Copyright (C) 2001-2021 Zabbix SIA ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. **/ /** * @var CView $this */ ?> <script type="text/javascript"> jQuery(function($) { var $form = $('[name=form_auth]'), warn = true; $form.submit(function() { var proceed = !warn || $('[name=authentication_type]:checked').val() == $('[name=db_authentication_type]').val() || confirm(<?= json_encode( _('Switching authentication method will reset all except this session! Continue?') ) ?>); warn = true; $form.trimValues(['#saml_idp_entityid', '#saml_sso_url', '#saml_slo_url', '#saml_username_attribute', '#saml_sp_entityid', '#saml_nameid_format' ]); return proceed; }); $form.find('#http_auth_enabled, #ldap_configured, #saml_auth_enabled').on('change', function() { var fields; if ($(this).is('#http_auth_enabled')) { fields = $form.find('[name^=http_]'); } else if ($(this).is('#ldap_configured')) { fields = $form.find('[name^=ldap_],button[name=change_bind_password]'); } else { fields = $form.find('[name^=saml_]'); } fields .not('[name=http_auth_enabled], [name=ldap_configured], [name=saml_auth_enabled]') .prop('disabled', !this.checked); }); $form.find('button#change_bind_password').click(function() { $form.find('[name=action]') .val($form.find('[name=action_passw_change]').val()); submitFormWithParam('form_auth', 'change_bind_password', '1'); }); $form.find('[name=ldap_test]').click(function() { warn = false; }); }); </script>
💾 保存文件
← 返回文件管理器