# wpforo/3.2.1/modules/license/LicenseConfig.php

wpForo Forum, version 3.2.1. 24 lines.

- Page: https://pluginprobe.com/plugins/wpforo/3.2.1/code/modules/license/LicenseConfig.php
- Raw: https://pluginprobe.com/plugins/wpforo/3.2.1/raw/modules/license/LicenseConfig.php
- Modified: 2026-09-26T07:50:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpforo/3.2.1/code/modules/license/LicenseConfig.php#L10-L20`.

```php
<?php

namespace wpforo\modules\license;

use gVectors\License\Config;

class LicenseConfig extends Config {
    public function get_proxy_server_url(): string {
        if( defined('GVECTORS_PROXY_URL') && GVECTORS_PROXY_URL ){
            return GVECTORS_PROXY_URL;
        }else{
            return parent::get_proxy_server_url();
        }
    }
    
    public function get_proxy_checkout_base_url(): string {
        if( defined('GVECTORS_PROXY_CHECKOUT_BASE_URL') && GVECTORS_PROXY_CHECKOUT_BASE_URL ){
            return GVECTORS_PROXY_CHECKOUT_BASE_URL;
        }else{
            return parent::get_proxy_checkout_base_url();
        }
    }
}

```
