]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
Continued a bit:
[mailer.git] / inc / wrapper-functions.php
index 3f7f91ed1166c5cfc01c3e6908454695abe62dcd..4ac0eeeffbab122a10d0e04f347e76181aa18d23 100644 (file)
@@ -3606,5 +3606,23 @@ function setSessionCompiled ($key, $value) {
        return setSession($key, $value);
 }
 
+// Does normal bootstrap
+function doNormalBootstrap () {
+       // Load configuration file(s) here
+       loadIncludeOnce('inc/load_config.php');
+
+       // Load database layer here
+       loadIncludeOnce('inc/db/lib.php');
+
+       // Init message system
+       initMessages();
+
+       // CSS array
+       initExtensionCssFiles();
+
+       // Initialize SQL link
+       initSqlLink();
+}
+
 // [EOF]
 ?>