You appear to be a bot. Output may be restricted
Description
Return the URL for the Premium (Pro) or Freemium versionIf 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_get_plugins_server();
Parameters
Returns
string URL for an oik-plugins serverSource
File name: oik-libs/libs/oik_plugins.phpLines:
1 to 11 of 11
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 ); }View on GitHub