Description
Infusionsoft options$url = bw_array_get( $atts, "url", "https://js110.infusionsoft.com/app/form/process/" ); $xid = bw_array_get( $atts, "xid", null ); $name = bw_array_get( $atts, "name", null ); $text = bw_array_get( $atts, "text", "Sign up now!" );
Usage
oikifs_options();Parameters
Returns
voidSource
File name: oik-infusionsoft/admin/oik-infusionsoft.phpLines:
1 to 17 of 17
function oikifs_options() { $option = 'bw_infusionsoft'; $options = bw_form_start( $option, 'oik_infusionsoft_options' ); //function bw_textfield_arr( $name, $text, $array, $index, $len, $class=null, $extras=null ) { // 946a315642dcb16adbf1974db6e24f94 bw_textfield_arr( $option, "Infusionsoft URL", $options, 'url', 50, null, "required " .kv("placeholder", $options['url'] )); bw_textfield_arr( $option, "XID", $options, 'xid', 40, null, "required " ); bw_textfield_arr( $option, "Form Name", $options, 'name', 30, null, "required " . kv("placeholder", "form name") ); bw_textfield_arr( $option, "Sign up here! button text", $options, 'text', 30, null, "required " . kv("placeholder", $options['text']) ); bw_tablerow( array( "", "<input type=\"submit\" name=\"ok\" value=\"Save changes\" class=\"button-primary\"/>") ); etag( "table" ); etag( "form" ); bw_flush(); }
Called by
Invoked by
Calls
1 to 6 of 6
- bw_flush() – Use bw_flush() to echo the contents of $bwecho then empty it
- bw_form_start() – Start of a WordPress form for options fields
- bw_tablerow() – Display a table row or table head row when $tdtag = "th"
- bw_textfield_arr() – Create a textfield for an array options field
- etag() – Output an end tag
- kv() – Create a keyword value pair
Call hooks
API Letters:
