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

wpForo Forum, version 3.2.0. 16 lines.

- Page: https://pluginprobe.com/plugins/wpforo/3.2.0/code/modules/news/NewsConfig.php
- Raw: https://pluginprobe.com/plugins/wpforo/3.2.0/raw/modules/news/NewsConfig.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/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();
        }
    }
}

```
