You appear to be a bot. Output may be restricted
Description
Return the array of functions for displaying particular fields in a form
Usage
_bw_form_functions();
Parameters
Returns
voidSource
File name: oik-fields/shortcodes/oik-new.phpLines:
1 to 27 of 27
function _bw_form_functions() { static $fields; if ( is_null( $fields) ) { $fields = array(); $fields['T'] = "bw_form_function_title"; //$fields['I'] = "bw_form_function_image"; //$fields['F'] = "bw_form_function_image"; $fields['C'] = "bw_form_function_content"; $fields['E'] = "bw_form_function_excerpt"; //$fields['M'] = "bw_form_function_readmore"; //$fields['R'] = "bw_form_function_readmore"; //$fields['L'] = "bw_form_function_link"; //$fields['A'] = "bw_form_function_anchor"; //$fields['/'] = "bw_form_function_div"; //$fields[' '] = "bw_form_function_nbsp"; //$fields['c'] = "bw_form_function_categories"; //$fields['o'] = "bw_form_function_comments"; //$fields['t'] = "bw_form_function_tags"; //$fields['a'] = "bw_form_function_author"; //$fields['d'] = "bw_form_function_date"; //$fields['e'] = "bw_form_function_edit"; $fields['_'] = "bw_form_function_fields"; // Apply_filters to allow other formatting functions provided by other plugins $fields = apply_filters( "bw_form_functions", $fields ); } return( $fields ); }View on GitHub