You appear to be a bot. Output may be restricted
Description
Class constructor for oiksc_function_loader
Usage
$object = oiksc_function_loader::__construct( $function );
Parameters
- $function
- ( string ) required – the name of the function or method
Returns
object oiksc_function_loader instanceSource
File name: oik-shortcodes/classes/class-oiksc-function-loader.phpLines:
1 to 25 of 25
function __construct( $function ) { //bw_backtrace(); global $plugin, $filename; if ( !$plugin ) { echo "Global plugin not set: $plugin!" . PHP_EOL; gob(); } if ( !$filename ) { echo "Global filename not set:$filename" . PHP_EOL; gob(); } $this->plugin = $plugin; $this->filename = $filename; $this->function_obj = $function; static $fid = 0; $this->dummy_function_name = "oiksc_dummy_function_$fid" ; $fid++; ///$this->component_type = $component_type; $this->component_type = null; $this->extract_to_tmp(); //bw_trace2( $this, "this" ); $this->require_tmp(); //return( $this ); }View on GitHub