get('db')); $tracking->setCurrentUserIp($_SERVER['REMOTE_ADDR']); $tracking->setCurrentUserAgent($_SERVER['HTTP_USER_AGENT']); /** * Check if controllerFile is NOT the EuropeanFontPatch for DownloadTracking */ if ($match['params']['controllerFile'] != 'EuropeanFontPatch') { $tracking->saveTrackingInDb('download', $settings->getValue('sks_download_version')); $dlFile = $settings->getValue('sks_download_file'); } else { $dlFile = $settings->getValue('sks_eufont_file'); } /** * Set Needed Variables for the Download Class */ $dl = new Download(); $dl->setAbsolutePath($settings->getValue('sks_download_path')); $dl->setFileName($dlFile); $dl->startDownloadFile(); $tpl->display('index.tpl');