PluginProbe
wpForo Forum / 3.2.0
wpForo Forum v3.2.0
3.2.0 3.1.7 3.1.6 3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 All 140 releases
wpforo / modules / news / NewsConfig.php

NewsConfig.php in wpForo Forum 3.2.0, at modules/news/NewsConfig.php

16 lines 343 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace wpforo\modules\news;
4
5 use gVectors\News\Config;
6
7 class NewsConfig extends Config {
8 public function get_proxy_server_url(): string {
9 if( defined('GVECTORS_PROXY_URL') && GVECTORS_PROXY_URL ){
10 return GVECTORS_PROXY_URL;
11 }else{
12 return parent::get_proxy_server_url();
13 }
14 }
15 }
16