Plugin Directory

Changeset 2779694


Ignore:
Timestamp:
09/04/2022 07:10:46 AM (4 years ago)
Author:
codefairies
Message:

update to version 1.5.2

Location:
bookertools-shows/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bookertools-shows/trunk/bookertools-htmlreturn.php

    r2698563 r2779694  
    4848    $teller=0;
    4949
    50     if(count($response->data)>0){
     50    if(!is_null($response->data) && count($response->data)>0){
    5151        if(is_numeric($show_limit)){
    5252            $max=$show_limit;
  • bookertools-shows/trunk/bookertools-integration.php

    r2698563 r2779694  
    33 * Plugin Name: Booker Tools Integration
    44 * Plugin URI: https://app.bookertools.com
    5  * Description: This plugin offers integration with Booker Tools 2.0 through a widget and shortcodes [bookertools_shows] & [bookertools_tours] to display your announced Booker Tools shows and tours.
    6  * Version: 1.5.1
     5 * 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
    77 * Author: CodeFairies
    88 * Author URI: https://www.codefairies.com
  • bookertools-shows/trunk/bookertools-widget.php

    r2655841 r2779694  
    33
    44    // 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        );
    719    }
    820
     
    6274    }
    6375
    64     // Register and load the widget
    65     function codefairies_bookertools_load_widget() {
    66         register_widget( 'codefairies_bookertools_widget' );
    67     }
     76   
    6877
     78}
     79// Register and load the widget
     80function codefairies_bookertools_load_widget() {
     81    register_widget( 'codefairies_bookertools_widget' );
    6982}
    7083
    7184// register widget
    72 add_action('widgets_init', codefairies_bookertools_load_widget);
     85add_action('widgets_init', 'codefairies_bookertools_load_widget');
    7386?>
  • bookertools-shows/trunk/readme.txt

    r2698563 r2779694  
    55Requires PHP: 5.2.4
    66Requires at least: 3.0.1
    7 Tested up to: 5.9.0
     7Tested up to: 6.0.2
    88Stable tag: trunk
    99License: GPLv2 or later
     
    5151
    5252== Upgrade Notice ==
     53= 1.5.2 =
     54Bugfix - Compatibility with php 8+
     55
    5356= 1.5.1 =
    5457added ticket and facebook event link options
Note: See TracChangeset for help on using the changeset viewer.