You appear to be a bot. Output may be restricted
Description
Display more telephone numbers
Usage
oik_more_contact_numbers( $option, $options, $alt0_suffix );
Parameters
- $option
- ( mixed ) required –
- $options
- ( mixed ) required –
- $alt0_suffix
- ( mixed ) required –
Returns
voidSource
File name: oik/admin/oik-admin.phpLines:
1 to 6 of 6
function oik_more_contact_numbers( $option, $options, $alt0_suffix ) { $fax = BW_::bwtnt( __( "Fax", "oik" ), " [bw_fax$alt0_suffix]" ); $emergency = BW_::bwtnt( __( "Emergency", "oik" ), " [bw_emergency$alt0_suffix]" ); BW_::bw_textfield_arr( $option, $fax , $options, 'fax', 50 ); BW_::bw_textfield_arr( $option, $emergency, $options, 'emergency', 50 ); }View on GitHub View on Trac