# wpforo/3.2.1/modules/news/NewsConfig.php

wpForo Forum, version 3.2.1. 16 lines.

- Page: https://pluginprobe.com/plugins/wpforo/3.2.1/code/modules/news/NewsConfig.php
- Raw: https://pluginprobe.com/plugins/wpforo/3.2.1/raw/modules/news/NewsConfig.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/news/NewsConfig.php#L10-L20`.

```php
<?php

namespace wpforo\modules\news;

use gVectors\News\Config;

class NewsConfig 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();
        }
    }
}

```
