You appear to be a bot. Output may be restricted
Description
Validate the contact information with respect to the contact status
Usage
oiksp_validate_contact( $name, $email, $confirm, $atts );
Parameters
- $name
- ( mixed ) required –
- ( mixed ) required –
- $confirm
- ( mixed ) required –
- $atts
- ( mixed ) required –
Returns
void
Source
File name: oik-squeeze/shortcodes/oik-squeeze.php
Lines:
1 to 12 of 12
function oiksp_validate_contact( $name, $email, $confirm, &$atts ) { $post = oiksp_get_contact( $email ); if ( $post ) { $result = oiksp_check_contact( $post, $name, $confirm, $atts ); } else { $result = oiksp_create_contact( $name, $email, $atts ); //$result = false; } bw_trace2( $result ); return( $result ); }