mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-09 23:54:09 -06:00
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
define('app', [
|
|
'sources/pgadmin', 'bundled_browser',
|
|
], function(pgAdmin) {
|
|
let initializeModules = function(Object) {
|
|
for (let key in Object) {
|
|
let module = Object[key];
|
|
|
|
if (module && module.init && typeof module.init == 'function') {
|
|
try {
|
|
module.init();
|
|
}
|
|
catch (e) {
|
|
console.warn(e.stack || e);
|
|
}
|
|
}
|
|
else if (module && module.Init && typeof module.Init == 'function') {
|
|
try {
|
|
module.Init();
|
|
}
|
|
catch (e) {
|
|
console.warn(e.stack || e);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
// Initialize modules registered to pgAdmin, pgAdmin.Browser and Tools object.
|
|
initializeModules(pgAdmin);
|
|
initializeModules(pgAdmin.Browser);
|
|
initializeModules(pgAdmin.Tools);
|
|
|
|
// create menus after all modules are initialized.
|
|
pgAdmin.Browser.create_menus();
|
|
});
|