sFilePath = self::getBackEndFilePath($sCodeName); $this->asTracks = array(); } //Access from backend public static function getBackendFilePath(string $sCodeName) { return '../resources/'.self::GEO_FOLDER.'/'.$sCodeName.static::EXT; } //Access from frontend (/public/geo is a symlink of /resources/geo) public static function getFrontendFilePath(string $sCodeName) { return self::GEO_FOLDER.'/'.$sCodeName.static::EXT; } public function getLog() { return $this->getCleanMessageStack(PhpObject::NOTICE_TAB); } }