Changeset 3064672
- Timestamp:
- 04/04/2024 12:22:30 PM (23 months ago)
- Location:
- 10to8-online-booking/trunk
- Files:
-
- 2 edited
-
10to8-online-appointment-booking.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
10to8-online-booking/trunk/10to8-online-appointment-booking.php
r2974317 r3064672 4 4 Plugin URI: http://10to8.com?utm_source=wp_plugin&utm_medium=existing_platforms 5 5 Description: Embed a FREE <a href="https://10to8.com?utm_source=wp_plugin&utm_medium=existing_platforms">Sign In Scheduling Online Booking Widget</a> into your website. Sign up for an account at 10to8.com and then visit 'Online Booking > Buttons & Widget' to access the code to set up the widget. 6 Version: 1. 0.96 Version: 1.1.0 7 7 Author: 10to8 8 8 Author URI: http://10to8.com?utm_source=wp_plugin&utm_medium=existing_platforms … … 23 23 24 24 function embed_10to8( $atts ) { 25 extract( shortcode_atts( array( 26 'organisation_id' => '', 27 ), $atts ) ); 25 // Define default attribute values 26 $default_atts = array('organisation_id' => ''); 28 27 28 // Merge user-provided attributes with default attributes 29 $atts = shortcode_atts($default_atts, $atts); 30 31 // Sanitize each attribute 32 $sanitized_atts = array_map("esc_attr", $atts); 33 34 // import variables into the local symbol table from an array 35 // we now can access $organisation_id 36 extract($sanitized_atts); 37 29 38 wp_enqueue_script( '10to8-js' ); 30 39 wp_localize_script('10to8-js-init', -
10to8-online-booking/trunk/readme.txt
r2974317 r3064672 49 49 == Changelog == 50 50 51 = 1.1.0 = 52 * Bug fixes 53 51 54 = 1.0.9 = 52 55 * Rebranding from 10to8 to Sign In Scheduling & Updated for latest version of wordpress i.e. version 6.3.1
Note: See TracChangeset
for help on using the changeset viewer.