/**
  * Initialize new FreedomCore object
  *
  */
 public function __construct()
 {
     require_once FREEDOMCORE_SYSTEM_DIR . 'Manager.FreedomCore.php';
     FreedomCore::InitializeSystem();
     $this->FreedomCore = $this;
     $this->setExtensionsDir(FREEDOMCORE_EXTENSIONS_DIR)->setCacheDir('.' . DS . 'Cache' . DS)->setConfigDir('.' . DS . FREEDOMCORE_DIR . 'Configuration' . DS)->setLanguageDir('.' . DS . FREEDOMCORE_DIR . 'Languages' . DS);
     FreedomCore::VerifyCurlInstallation();
     FreedomCore::VerifyPDOInstallation();
 }