Changeset 2779694
- Timestamp:
- 09/04/2022 07:10:46 AM (4 years ago)
- Location:
- bookertools-shows/trunk
- Files:
-
- 4 edited
-
bookertools-htmlreturn.php (modified) (1 diff)
-
bookertools-integration.php (modified) (1 diff)
-
bookertools-widget.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bookertools-shows/trunk/bookertools-htmlreturn.php
r2698563 r2779694 48 48 $teller=0; 49 49 50 if( count($response->data)>0){50 if(!is_null($response->data) && count($response->data)>0){ 51 51 if(is_numeric($show_limit)){ 52 52 $max=$show_limit; -
bookertools-shows/trunk/bookertools-integration.php
r2698563 r2779694 3 3 * Plugin Name: Booker Tools Integration 4 4 * Plugin URI: https://app.bookertools.com 5 * Description: This plugin offers integration with Booker Tools 2.0through a widget and shortcodes [bookertools_shows] & [bookertools_tours] to display your announced Booker Tools shows and tours.6 * Version: 1.5. 15 * Description: This plugin offers integration with Booker Tools through a widget and shortcodes [bookertools_shows] & [bookertools_tours] to display your announced Booker Tools shows and tours. 6 * Version: 1.5.2 7 7 * Author: CodeFairies 8 8 * Author URI: https://www.codefairies.com -
bookertools-shows/trunk/bookertools-widget.php
r2655841 r2779694 3 3 4 4 // constructor 5 function codefairies_bookertools_widget() { 6 parent::__construct(false, $name = __('Bookter Tools Shows', 'wp_widget_plugin') ); 5 function __construct() { 6 /*parent::__construct(false, $name = __('Bookter Tools Shows', 'wp_widget_plugin') );*/ 7 8 parent::__construct( 9 10 // Base ID of your widget 11 'bookertools_widget', 12 13 // Widget name will appear in UI 14 __('Bookter Tools Shows', 'wp_widget_plugin'), 15 16 // Widget description 17 array( 'description' => __( 'Widget to display Booker Tools shows', 'wp_widget_plugin' ), ) 18 ); 7 19 } 8 20 … … 62 74 } 63 75 64 // Register and load the widget 65 function codefairies_bookertools_load_widget() { 66 register_widget( 'codefairies_bookertools_widget' ); 67 } 76 68 77 78 } 79 // Register and load the widget 80 function codefairies_bookertools_load_widget() { 81 register_widget( 'codefairies_bookertools_widget' ); 69 82 } 70 83 71 84 // register widget 72 add_action('widgets_init', codefairies_bookertools_load_widget);85 add_action('widgets_init', 'codefairies_bookertools_load_widget'); 73 86 ?> -
bookertools-shows/trunk/readme.txt
r2698563 r2779694 5 5 Requires PHP: 5.2.4 6 6 Requires at least: 3.0.1 7 Tested up to: 5.9.07 Tested up to: 6.0.2 8 8 Stable tag: trunk 9 9 License: GPLv2 or later … … 51 51 52 52 == Upgrade Notice == 53 = 1.5.2 = 54 Bugfix - Compatibility with php 8+ 55 53 56 = 1.5.1 = 54 57 added ticket and facebook event link options
Note: See TracChangeset
for help on using the changeset viewer.