Plugin Directory

Changeset 2505779


Ignore:
Timestamp:
03/30/2021 09:00:17 AM (5 years ago)
Author:
dunskii
Message:

Latest WP version 5.7 capability update.

Location:
booking-x/trunk
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • booking-x/trunk/README.txt

    r2505760 r2505779  
    55Tested up to: 5.7
    66Requires PHP: 5.0
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: https://booking-x.com/gpl-licence/
     
    132132== Upgrade Notice ==
    133133
    134 = 1.0.1 =
     134= 1.0.2 =
    135135Latest WP version 5.7 capability update.
    136136
     
    142142= 1.0 - Let's get this party started! 2021-16-03 =
    143143= 1.0.1 - Latest WP version 5.7 capability update. 2021-30-03 =
     144= 1.0.2 - Latest WP version 5.7 capability update. 2021-30-03 =
  • booking-x/trunk/admin/class-bookingx-admin.php

    r2505757 r2505779  
    44 *
    55 * @link       https://dunskii.com
    6  * @since      1.0.1
     6 * @since      1.0.2
    77 *
    88 * @package    Bookingx
     
    1414     * The ID of this plugin.
    1515     *
    16      * @since      1.0.1
     16     * @since      1.0.2
    1717     * @access   private
    1818     * @var      string $plugin_name The ID of this plugin.
     
    2323     * The version of this plugin.
    2424     *
    25      * @since      1.0.1
     25     * @since      1.0.2
    2626     * @access   private
    2727     * @var      string $version The current version of this plugin.
     
    3434     * @param string $plugin_name The name of this plugin.
    3535     * @param string $version The version of this plugin.
    36      * @since      1.0.1
     36     * @since      1.0.2
    3737     */
    3838    public function __construct( $plugin_name = null, $version = null ) {
     
    620620     * Register the stylesheets for the admin area.
    621621     *
    622      * @since      1.0.1
     622     * @since      1.0.2
    623623     */
    624624    public function enqueue_styles() {
     
    642642     * Register the JavaScript for the admin area.
    643643     *
    644      * @since      1.0.1
     644     * @since      1.0.2
    645645     */
    646646    public function enqueue_scripts() {
  • booking-x/trunk/admin/settings.php

    r2505757 r2505779  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.1
     6 * @since      1.0.2
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_biz-view.php

    r2505757 r2505779  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.1
     6 * @since      1.0.2
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_general-view.php

    r2505757 r2505779  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.1
     6 * @since      1.0.2
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_payment-view.php

    r2505757 r2505779  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.1
     6 * @since      1.0.2
    77 */
    88
  • booking-x/trunk/admin/settings/setting-functions.php

    r2505757 r2505779  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.1
     6 * @since      1.0.2
    77 */
    88
  • booking-x/trunk/admin/settings/settings_save.php

    r2505757 r2505779  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.1
     6 * @since      1.0.2
    77 */
    88
  • booking-x/trunk/bookingx.php

    r2505757 r2505779  
    44 *  Plugin URI: https://booking-x.com/
    55 *  Description: Booking X is a booking and appointments plugin for WordPress
    6  *  Version: 1.0.1
     6 *  Version: 1.0.2
    77 *  Requires at least: 5.0
    88 *  Requires PHP: 5.0
     
    4040define( 'BKX_PLUGIN_PUBLIC_URL', BKX_PLUGIN_DIR_URL . 'public' );
    4141define( 'BKX_PLUGIN_PUBLIC_PATH', BKX_PLUGIN_DIR_PATH . 'public' );
    42 define( 'BKX_PLUGIN_VER', '1.0.1' );
     42define( 'BKX_PLUGIN_VER', '1.0.2' );
    4343define( 'BKX_BLOCKS_ASSETS', BKX_PLUGIN_DIR_URL . 'includes/core/blocks/assets/' );
    4444define( 'BKX_BLOCKS_ASSETS_BASE_PATH', BKX_PLUGIN_DIR_PATH . "includes\core\blocks\assets" );
  • booking-x/trunk/includes/class-bookingx-activator.php

    r2505757 r2505779  
    55 * This class defines all code necessary to run during the plugin's activation.
    66 *
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 * @package    Bookingx
    99 * @subpackage Bookingx/includes
  • booking-x/trunk/includes/class-bookingx.php

    r2505757 r2505779  
    2222 * version of the plugin.
    2323 *
    24  * @since      1.0.1
     24 * @since      1.0.2
    2525 * @package    Bookingx
    2626 * @subpackage Bookingx/includes
  • booking-x/trunk/templates/single-bkx_addition.php

    r2505757 r2505779  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 */
    99
  • booking-x/trunk/templates/single-bkx_base.php

    r2505757 r2505779  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 */
    99
  • booking-x/trunk/templates/single-bkx_seat.php

    r2505757 r2505779  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 */
    99
  • booking-x/trunk/templates/single.php

    r2505757 r2505779  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.1
     7 * @since      1.0.2
    88 */
    99
Note: See TracChangeset for help on using the changeset viewer.