* Escaped: {{data.test_key}} * HTML: {{{data.test_key}}} * JS: <# if (true) { alert( 1 ); } #> * * * var template__var = wp.template( 'template_name_a' ); * * jQuery( '.content' ).html( template__var( { 'test_key' => 'Data' } ) ); * * @return void */ /** * Validate * * @param $post_data * * @return array */ function wpbc_template__get_started__action_validate_data( $post_data ){ $escaped_data = array( //'booking_form_theme' => get_bk_option( 'booking_form_theme' ) // '' ); // ----------------------------------------------------------------------------------------------------------------- // $key = 'booking_form_theme'; // if ( ( isset( $post_data[ $key ] ) ) ) { // $escaped_data[ $key ] = wpbc_clean_text_value( $post_data[ $key ] ); // } return $escaped_data; } /** * Update * * @param $cleaned_data array * * @return void */ function wpbc_setup__update__get_started( $cleaned_data ){ // if ( isset( $cleaned_data['booking_form_theme'] ) ) { // update_bk_option( 'booking_form_theme', $cleaned_data['booking_form_theme'] ); // } }