Sample lazy smart shortcode 3/4

function bbboing_sc( $atts=NULL ) { $form = bw_array_get( $atts, "form", 'N' ); $both = bw_array_get( $atts, "both", 'N' ); $text = bw_array_get_dcb( $atts, "text", "", "seed" ); $form = bw_validate_torf( $form ); $both = bw_validate_torf( $both ); if ( $form ) $result = _bbboing_form( $text, $atts ); else $result = _bbboing_static( $text, $both ); return( $result ); }