You appear to be a bot. Output may be restricted
Description
Show the "oik" contact formThis is a simple contact form which contains: Name, Email, Subject, Message and a submit button
Usage
_oiku_show_contact_form_oik( $atts );
Parameters
- $atts
- ( mixed ) required –
Returns
voidSource
File name: oik-user/shortcodes/oik-contact-user.phpLines:
1 to 17 of 17
function _oiku_show_contact_form_oik( $atts ) { $me = bw_get_me( $atts ); $email_to = bw_get_option_arr( "email", null, $atts ); $text = sprintf( __( "Contact %s" ), $me ); oik_require( "bobbforms.inc" ); bw_form(); stag( "table" ); bw_textfield( "oiku_name", 30, "Name *", null, "textBox", "required" ); bw_emailfield( "oiku_email", 30, "Email *", null, "textBox", "required" ); bw_textfield( "oiku_subject", 30, "Subject", null, "textBox" ); bw_textarea( "oiku_text", 40, "Message", null, 10 ); etag( "table" ); e( ihidden( "oiku_email_to", $email_to ) ); e( isubmit( "oiku_contact", $text, null ) ); etag( "form" ); }View on GitHub