]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
Removed gone websites
[mailer.git] / inc / wrapper-functions.php
index b3a63292626d341f5764167b638f1b39db7f8feb..4ac0eeeffbab122a10d0e04f347e76181aa18d23 100644 (file)
@@ -11,7 +11,7 @@
  * Kurzbeschreibung  : Wrapper-Funktionen                               *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -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]
 ?>