reFormatLicenseString example

$licenseInstaller = new LicenseInstaller($this->container->get(Connection::class));
            $licenseInstaller->installLicense($licenseData);
        } catch (Exception $e) {
            $this->View()->assign([
                'success' => false,
                'message' => $e->getMessage(),
            ]);

            return;
        }

        $licenseData = $this->reFormatLicenseString($licenseData);

        $this->View()->assign([
            'success' => true,
            'licenseData' => $licenseData,
        ]);
    }

    /** * Outputs the current license information if present in db */
    public function loadSavedLicenseAction()
    {
Home | Imprint | This part of the site doesn't use cookies.