You appear to be a bot. Output may be restricted
Description
Pre-load the component we're processing
Usage
oiksc_pre_load_component( $plugin, $component_type, $force );
Parameters
- $plugin
- ( string ) required – the plugin or theme slug
- $component_type
- ( string ) required – "plugin", "theme", "wordpress"
- $force
- ( bool ) optional – unnecessary parameter ?
Returns
voidSource
File name: oik-shortcodes/admin/oik-create-apis.phpLines:
1 to 10 of 10
function oiksc_pre_load_component( $plugin, $component_type, $force=false ) { global $plugin_post; //if ( !$plugin_post ) { $plugin_post = oiksc_load_component( $plugin, $component_type ); //} if ( null == $plugin_post ) { bw_trace2( $plugin_post, "Missing plugin_post", true, BW_TRACE_ERROR ); } return( $plugin_post ); }View on GitHub