phpjs
Version:
25 lines (22 loc) • 633 B
JavaScript
function get_included_files() {
// http://kevin.vanzonneveld.net
// + original by: Michael White (http://getsprink.com)
// % note 1: Uses global: php_js to keep track of included files
// * example 1: get_included_files();
// * returns 1: ['http://kevin.vanzonneveld.net/pj_tester.php']
var cur_file = {};
cur_file[this.window.location.href] = 1;
if (!this.php_js) {
this.php_js = {};
}
if (!this.php_js.includes) {
this.php_js.includes = cur_file;
}
var includes = [];
var i = 0;
for (var key in this.php_js.includes) {
includes[i] = key;
i++;
}
return includes;
}