blob: 4e6da8203342ba34622e95253dde93def05da959 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
/**
* Bootstrap Elgg javascript
*/
global $CONFIG;
include("{$CONFIG->path}js/lib/elgglib.js");
//No such thing as autoloading classes in javascript
$model_files = array(
'ElggEntity',
'ElggUser',
'ElggPriorityList',
);
foreach($model_files as $file) {
include("{$CONFIG->path}js/classes/$file.js");
}
//Include library files
$libs = array(
//libraries
'events',
'security',
'languages',
'ajax',
'session',
//ui
'ui',
'ui.widgets',
);
foreach($libs as $file) {
include("{$CONFIG->path}js/lib/$file.js");
}
/**
* Set some values that are cacheable
*/
?>
elgg.version = '<?php echo get_version(); ?>';
elgg.release = '<?php echo get_version(true); ?>';
elgg.config.wwwroot = '<?php echo elgg_get_site_url(); ?>';
elgg.security.interval = 5 * 60 * 1000; <?php //TODO make this configurable ?>
//Mimic PHP engine boot process
//Before the DOM is ready -- note that plugins aren't loaded yet
elgg.trigger_event('boot', 'system');
//After the DOM is ready
$(function() {
elgg.trigger_event('init', 'system');
});
|