Description
Address and geo fieldsextended-address e.g. Bobbing Wide street-address e.g. 41 Redhill Road locality e.g Rowlands Castle region e.g. HANTS postal-code e.g. PO9 6DE country-name e.g. UK
Usage
oik_address_info( $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 12 of 12
function oik_address_info( $option, $options, $alt0_suffix ) { BW_::bw_textfield_arr( $option, BW_::bwtnt( __( "Extended address", "oik" ), " [bw_address$alt0_suffix]" ), $options, 'extended-address', 50 ); BW_::bw_textfield_arr( $option, __( "Street address", "oik" ), $options, 'street-address', 50 ); BW_::bw_textfield_arr( $option, __( "Locality", "oik" ), $options, 'locality', 50 ); BW_::bw_textfield_arr( $option, __( "Region", "oik" ), $options, 'region', 50 ); BW_::bw_textfield_arr( $option, __( "Post Code", "oik" ), $options, 'postal-code', 50 ); BW_::bw_textfield_arr( $option, __( "Country name", "oik" ), $options, 'country-name', 50 ); BW_::bw_textarea_arr( $option, BW_::bwtnt( __( "Google Maps introductory text for", "oik" ), " [bw_show_googlemap$alt0_suffix]" ), $options, 'gmap_intro', 50 ); BW_::bw_textfield_arr( $option, BW_::bwtnt( __( "Latitude", "oik" ), " [bw_geo$alt0_suffix] [bw_directions$alt0_suffix]" ), $options, 'lat', 50 ); BW_::bw_textfield_arr( $option, BW_::bwtnt( __( "Longitude", "oik" ), " [bw_show_googlemap$alt0_suffix]" ), $options, 'long', 50 ); }View on GitHub View on Trac
Called by
1 to 2 of 2
Invoked by
Calls
1 to 2 of 2
