You appear to be a bot. Output may be restricted
Description
type=& order_code=& email=& name=
Usage
_oik_edd_apikey_form( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik-edd/shortcodes/oik-edd.phpLines:
1 to 21 of 21
function _oik_edd_apikey_form( $atts=NULL ) { oik_require( "bobbforms.inc" ); $fields = _oik_edd_apikey_get(); $apikey = oik_edd_validate_fields( $fields, oik_edd_required_fields() ); bw_trace2( $fields, "stripslashed fields", false ); if ( null == $apikey || is_wp_error( $apikey) ) { _oik_edd_apikey_show_form( $fields, $apikey ); } else { e( "Your API key is: ". $apikey ); _oik_edd_report_plugins( $fields ); bw_form(); e( "<input type=\"submit\" name=\"_oik_edd_apikey_another\" value=\"Request another API key\" />" ); // isubmit not available in oik v1.16 - which is what we have on qw/wpit at present //e( isubmit( "_oik_edd_apikey_another", "Request another API key" )); etag( "form" ); } return( bw_ret() ); }View on GitHub