2012-04-23 20:57:06 +04:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('#ldapSettings').tabs();
|
2012-07-26 20:10:53 +04:00
|
|
|
$('#ldap_action_test_connection').button();
|
|
|
|
$('#ldap_action_test_connection').click(function(event){
|
|
|
|
event.preventDefault();
|
|
|
|
$.post(
|
|
|
|
OC.filePath('user_ldap','ajax','testConfiguration.php'),
|
|
|
|
$('#ldap').serialize(),
|
|
|
|
function (result) {
|
|
|
|
if (result.status == 'success') {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
result.message,
|
|
|
|
'Connection test succeeded'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
OC.dialogs.alert(
|
|
|
|
result.message,
|
|
|
|
'Connection test failed'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2012-04-23 20:57:06 +04:00
|
|
|
});
|