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

wpForo Forum, version 3.2.0. 24 lines.

- Page: https://pluginprobe.com/plugins/wpforo/3.2.0/code/modules/license/LicenseConfig.php
- Raw: https://pluginprobe.com/plugins/wpforo/3.2.0/raw/modules/license/LicenseConfig.php
- Modified: 2026-09-25T08:24:48+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.0/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();
        }
    }
}

```
