You appear to be a bot. Output may be restricted
Description
Usage
oik_extra_shortcode_options_2();
Parameters
Returns
voidSource
File name: oik-moreoptions/admin/oik-moreoptions.phpLines:
1 to 29 of 29
function oik_extra_shortcode_options_2() { $alt = "2"; $option = "bw_options$alt"; $options = bw_form_start( $option, "oik_options_options$alt" ); /* We can't use the function blocks until they support the shortcode parameter suffix " alt=2" */ bw_textfield_arr( $option, "Contact [bw_contact alt=2]", $options, 'contact', 50 ); bw_textfield_arr( $option, "Email [bw_email alt=2]", $options, 'email', 50 ); bw_textfield_arr( $option, "Telephone [bw_telephone alt=2]", $options, 'telephone', 50 ); bw_textfield_arr( $option, "Mobile [bw_mobile alt=2]", $options, 'mobile', 50 ); bw_textfield_arr( $option, "Extended-address [bw_address alt=2]", $options, 'extended-address', 50 ); bw_textfield_arr( $option, "Street-address", $options, 'street-address', 50 ); bw_textfield_arr( $option, "Locality", $options, 'locality', 50 ); bw_textfield_arr( $option, "Region", $options, 'region', 50 ); bw_textfield_arr( $option, "Post Code", $options, 'postal-code', 50 ); bw_textfield_arr( $option, "Country name", $options, 'country-name', 50 ); bw_textarea_arr( $option, "Google Maps introductory text for [bw_show_googlemap alt=2]", $options, 'gmap_intro', 50 ); bw_textfield_arr( $option, "Latitude [bw_geo alt=2] [bw_directions alt=2]", $options, 'lat', 50 ); bw_textfield_arr( $option, "Longitude [bw_show_googlemap alt=2]", $options, 'long', 50 ); bw_tablerow( array( "", "<input type=\"submit\" name=\"ok\" value=\"Save changes\" class=\"button-primary\"/>") ); etag( "table" ); etag( "form" ); bw_flush(); }View on GitHub