You appear to be a bot. Output may be restricted
Description
Invoke the function to display the field in a form
Usage
bw_call_form_function( $abbrev, $fields );
Parameters
- $abbrev
- ( string ) required – the single character abbreviation for the field
- $fields
- ( array ) required – array of fields
Returns
voidSource
File name: oik-fields/shortcodes/oik-new.phpLines:
1 to 7 of 7
function bw_call_form_function( $abbrev, $fields ) { //bw_backtrace(); $functions = _bw_form_functions(); $function = bw_array_get( $functions, $abbrev, "bw_form_function_undefined" ); bw_trace2( $function, "function", true, BW_TRACE_VERBOSE ); call_user_func( $function, $abbrev, $fields ); }View on GitHub