You appear to be a bot. Output may be restricted
Description
Produce a link to the API based on the reference_type
Usage
oikai_handle_reference_type( $api, $reference_type );
Parameters
- $api
- ( string ) required – the API name
- $reference_type
- ( string ) required – the determined reference type
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api.phpLines:
1 to 14 of 14
function oikai_handle_reference_type( $api, $reference_type ) { $funcname = bw_funcname( __FUNCTION__, $reference_type ); //e( $funcname ); if ( $funcname != __FUNCTION__ ) { if ( is_callable( $funcname ) ) { call_user_func( $funcname, $api, $reference_type ); } else { fob(); oikai_handle_reference_type_internal( $api, $reference_type ); } } else { oikai_handle_reference_type_internal( $api, $reference_type ); } }View on GitHub