You appear to be a bot. Output may be restricted
Description
Register this plugin as one that is served from a different server to WordPress.orgNotes: Plugins registered using the API set the default value for the server … which may be null i.e. they set the intention to be served from somewhere other than WordPress.org When required we determine the actual server location AND other fields as needed during oik_query_plugins_server() At least ONE plugin needs to call this API for the oik plugin server logic to be activated.
Usage
oik_register_plugin_server( $file, $server, $apikey );
Parameters
- $file
- ( string ) required – fully qualified plugin file name
- $server
- ( string ) optional – server name initial value – only set when the server value in the options is blank
- $apikey
- ( string ) optional – hard coded apikey initial value
Returns
voidSource
File name: oik/admin/oik-admin.phpLines:
1 to 5 of 5
function oik_register_plugin_server( $file, $server=null, $apikey=null ) { $oik_update_loaded = oik_require_lib( "class-oik-update" ); bw_trace2( $oik_update_loaded, "oik_update_loaded" ); oik_update::oik_register_plugin_server( $file, $server, $apikey ); }View on GitHub View on Trac