Elgg  Version 1.9
Functions | Variables
install.js File Reference

Go to the source code of this file.

Functions

function elgg combo checkbox click (function(){if($(this).is(':checked')){$(this).prev().attr('disabled', true);$(this).prev().val('');}else{$(this).prev().attr('disabled', false);}})
 

Variables

 elgg
 
elgg installer rewriteTest
 Check the rewrite address for "success" and then allows the installation to proceed. More...
 

Function Documentation

function elgg combo checkbox click ( function(){if($(this).is(':checked')){$(this).prev().attr('disabled', true);$(this).prev().val('');}else{$(this).prev().attr('disabled', false);}}  )

Variable Documentation

elgg
Initial value:
= {
installer: {}
}
Examples:
/root/Elgg/js/lib/elgglib.js.

Definition at line 23 of file install.js.

elgg installer rewriteTest
Initial value:
= function(url, success_msg, nextURL) {
$.ajax(url, {
success: function(data, status, xhr) {
if (data == 'success') {
$('.elgg-require-rewrite li').attr('class', 'pass');
$('.elgg-require-rewrite li').html('<p>' + success_msg + '</p>');
$('.elgg-install-nav a.elgg-state-disabled')
.removeClass('elgg-state-disabled')
.attr('href', nextURL);
}
}
});
}
elgg message elgg state success
Definition: admin.php:243
html
Definition: admin.php:36
$CONFIG url
The full URL where Elgg is installed.
Definition: config.php:94

Check the rewrite address for "success" and then allows the installation to proceed.

Definition at line 30 of file install.js.