You appear to be a bot. Output may be restricted
Description
Show/process a contact form using oik
Usage
_oiku_display_contact_form_oik( $atts, $user );
Parameters
- $atts
- ( mixed ) required –
- $user
- ( mixed ) optional –
Returns
voidSource
File name: oik-user/shortcodes/oik-contact-user.phpLines:
1 to 10 of 10
function _oiku_display_contact_form_oik( $atts, $user=null ) { $contact = bw_array_get( $_REQUEST, "oiku_contact", null ); if ( $contact ) { $contact = _oiku_process_contact_form_oik(); } if ( !$contact ) { _oiku_show_contact_form_oik( $atts, $user ); } }View on GitHub