if (this.checked) {
value = 'yes';
}
- OC.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
+ OCP.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
});
});
$allowUserMounting.bind('change', function() {
OC.msg.startSaving('#userMountingMsg');
if (this.checked) {
- OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'yes');
+ OCP.AppConfig.setValue('files_external', 'allow_user_mounting', 'yes');
$('input[name="allowUserMountingBackends\\[\\]"]').prop('checked', true);
$('#userMountingBackends').removeClass('hidden');
$('input[name="allowUserMountingBackends\\[\\]"]').eq(0).trigger('change');
} else {
- OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'no');
+ OCP.AppConfig.setValue('files_external', 'allow_user_mounting', 'no');
$('#userMountingBackends').addClass('hidden');
}
OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('files_external', 'Saved')}});
}).get();
userMountingBackends = userMountingBackends.concat(deprecatedBackends);
- OC.AppConfig.setValue('files_external', 'user_mounting_backends', userMountingBackends.join());
+ OCP.AppConfig.setValue('files_external', 'user_mounting_backends', userMountingBackends.join());
OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('files_external', 'Saved')}});
// disable allowUserMounting
$notificationTargetGroups.change(function(ev) {
var groups = ev.val || [];
groups = JSON.stringify(groups);
- OC.AppConfig.setValue('updatenotification', 'notify_groups', groups);
+ OCP.AppConfig.setValue('updatenotification', 'notify_groups', groups);
});
});
$(element).change(function(ev) {
var groups = ev.val || [];
groups = JSON.stringify(groups);
- OC.AppConfig.setValue('core', $(this).attr('name'), groups);
+ OCP.AppConfig.setValue('core', $(this).attr('name'), groups);
});
});
if($(this).is(':checked')){
var mode = $(this).val();
if (mode === 'ajax' || mode === 'webcron' || mode === 'cron') {
- OC.AppConfig.setValue('core', 'backgroundjobs_mode', mode);
+ OCP.AppConfig.setValue('core', 'backgroundjobs_mode', mode);
// clear cron errors on background job mode change
- OC.AppConfig.deleteKey('core', 'cronErrors');
+ OCP.AppConfig.deleteKey('core', 'cronErrors');
}
}
});
$('#reallyEnableEncryption').click(function() {
$('#encryptionAPI div#EncryptionWarning').toggleClass('hidden');
$('#encryptionAPI div#EncryptionSettingsArea').toggleClass('hidden');
- OC.AppConfig.setValue('core', 'encryption_enabled', 'yes');
+ OCP.AppConfig.setValue('core', 'encryption_enabled', 'yes');
$('#enableEncryption').attr('disabled', 'disabled');
});
value = 'no';
}
}
- OC.AppConfig.setValue('core', $(this).attr('name'), value);
+ OCP.AppConfig.setValue('core', $(this).attr('name'), value);
});
$('#shareapiDefaultExpireDate').change(function() {
$('#CheckboxStorageLocation').click(function() {
if ($('#CheckboxStorageLocation').is(':checked')) {
$("#userlist .storageLocation").show();
- OC.AppConfig.setValue('core', 'umgmt_show_storage_location', 'true');
+ OCP.AppConfig.setValue('core', 'umgmt_show_storage_location', 'true');
} else {
$("#userlist .storageLocation").hide();
- OC.AppConfig.setValue('core', 'umgmt_show_storage_location', 'false');
+ OCP.AppConfig.setValue('core', 'umgmt_show_storage_location', 'false');
}
});
$('#CheckboxLastLogin').click(function() {
if ($('#CheckboxLastLogin').is(':checked')) {
$("#userlist .lastLogin").show();
- OC.AppConfig.setValue('core', 'umgmt_show_last_login', 'true');
+ OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'true');
} else {
$("#userlist .lastLogin").hide();
- OC.AppConfig.setValue('core', 'umgmt_show_last_login', 'false');
+ OCP.AppConfig.setValue('core', 'umgmt_show_last_login', 'false');
}
});
$('#CheckboxEmailAddress').click(function() {
if ($('#CheckboxEmailAddress').is(':checked')) {
$("#userlist .mailAddress").show();
- OC.AppConfig.setValue('core', 'umgmt_show_email', 'true');
+ OCP.AppConfig.setValue('core', 'umgmt_show_email', 'true');
} else {
$("#userlist .mailAddress").hide();
- OC.AppConfig.setValue('core', 'umgmt_show_email', 'false');
+ OCP.AppConfig.setValue('core', 'umgmt_show_email', 'false');
}
});
$('#CheckboxUserBackend').click(function() {
if ($('#CheckboxUserBackend').is(':checked')) {
$("#userlist .userBackend").show();
- OC.AppConfig.setValue('core', 'umgmt_show_backend', 'true');
+ OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'true');
} else {
$("#userlist .userBackend").hide();
- OC.AppConfig.setValue('core', 'umgmt_show_backend', 'false');
+ OCP.AppConfig.setValue('core', 'umgmt_show_backend', 'false');
}
});
$('#CheckboxMailOnUserCreate').click(function() {
if ($('#CheckboxMailOnUserCreate').is(':checked')) {
$("#newemail").show();
- OC.AppConfig.setValue('core', 'umgmt_send_email', 'true');
+ OCP.AppConfig.setValue('core', 'umgmt_send_email', 'true');
} else {
$("#newemail").hide();
- OC.AppConfig.setValue('core', 'umgmt_send_email', 'false');
+ OCP.AppConfig.setValue('core', 'umgmt_send_email', 'false');
}
});