You appear to be a bot. Output may be restricted
Description
Return the URL for the Premium (Pro) or Freemium version
If BW_OIK_PLUGINS_SERVER is defined we'll use that. Else, we'll use the value of OIK_PLUGINS_COM which we'll define if it's not already defined
Usage
$string = oik_update::oik_get_plugins_server();
Parameters
Returns
string URL for an oik-plugins server
Source
File name: oik/libs/class-oik-update.php
Lines:
1 to 11 of 11
static function oik_get_plugins_server() { if ( defined( 'BW_OIK_PLUGINS_SERVER' )) { $url = BW_OIK_PLUGINS_SERVER; } else { if ( !defined( "OIK_PLUGINS_COM" ) ) { define( "OIK_PLUGINS_COM", "https://www.oik-plugins.com" ); } $url = OIK_PLUGINS_COM; } return( $url ); }