Plugin Directory

Changeset 3147273


Ignore:
Timestamp:
09/05/2024 08:37:59 PM (19 months ago)
Author:
loncar
Message:

New version 3.12.0

Location:
easy-appointments/trunk
Files:
9 added
2 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • easy-appointments/trunk/main.php

    r3131833 r3147273  
    55 * Plugin URI: https://easy-appointments.com/
    66 * Description: Simple and easy to use management system for Appointments and Bookings
    7  * Version: 3.11.22
     7 * Version: 3.12.0
    88 * Requires PHP: 5.3
    99 * Author: Nikola Loncar
     
    2222 * Currently plugin version.
    2323 */
    24 define( 'EASY_APPOINTMENTS_VERSION', '3.11.21' );
     24define( 'EASY_APPOINTMENTS_VERSION', '3.12.0' );
    2525
    2626// path for source files
     
    141141        global $wpdb;
    142142
    143         $this->container = new tad_DI52_Container();
     143        $this->container = new tad_EA52_Container();
    144144        $this->container['wpdb'] = $wpdb;
    145145        $this->container['utils'] = new EAUtils();
     
    203203
    204204    /**
    205      * @return tad_DI52_Container
     205     * @return tad_EA52_Container
    206206     */
    207207    public function get_container()
  • easy-appointments/trunk/readme.txt

    r3131833 r3147273  
    66Tested up to: 6.6
    77Requires PHP: 5.3
    8 Stable tag: 3.11.22
     8Stable tag: 3.12.0
    99License: GPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    214214== Changelog ==
    215215
    216 = 3.11.22 (2024-8-06) =
     216= 3.12.0 (2024-09-06) =
     217* Fixed issue with DI52 dependency conflict between versions with other plugins
     218
     219= 3.11.22 (2024-08-06) =
    217220* Moved from .NET to .COM so new home for EasyAppointments is https://easy-appointments.com
    218221
  • easy-appointments/trunk/src/api/mainapi.php

    r2459226 r3147273  
    55    /**
    66     * EAMainApi constructor.
    7      * @param tad_DI52_Container $container
     7     * @param tad_EA52_Container $container
    88     */
    99    public function __construct($container)
  • easy-appointments/trunk/vendor/composer/autoload_classmap.php

    r2688534 r3147273  
    4242    'Leuffen\\TextTemplate\\__BreakLoopException' => $vendorDir . '/text/template/src/__BreakLoopException.php',
    4343    'Leuffen\\TextTemplate\\__ContinueLoopException' => $vendorDir . '/text/template/src/__ContinueLoopException.php',
    44     'tad_DI52_Container' => $vendorDir . '/lucatume/di52/src/tad/DI52/Container.php',
    45     'tad_DI52_ContainerInterface' => $vendorDir . '/lucatume/di52/src/tad/DI52/ContainerInterface.php',
    46     'tad_DI52_ProtectedValue' => $vendorDir . '/lucatume/di52/src/tad/DI52/ProtectedValue.php',
    47     'tad_DI52_ServiceProvider' => $vendorDir . '/lucatume/di52/src/tad/DI52/ServiceProvider.php',
    48     'tad_DI52_ServiceProviderInterface' => $vendorDir . '/lucatume/di52/src/tad/DI52/ServiceProviderInterface.php',
     44    'tad_EA52_Container' => $vendorDir . '/lucatume/di52/src/tad/EA52/Container.php',
     45    'tad_EA52_ContainerInterface' => $vendorDir . '/lucatume/di52/src/tad/EA52/ContainerInterface.php',
     46    'tad_EA52_ProtectedValue' => $vendorDir . '/lucatume/di52/src/tad/EA52/ProtectedValue.php',
     47    'tad_EA52_ServiceProvider' => $vendorDir . '/lucatume/di52/src/tad/EA52/ServiceProvider.php',
     48    'tad_EA52_ServiceProviderInterface' => $vendorDir . '/lucatume/di52/src/tad/EA52/ServiceProviderInterface.php',
    4949    'xrstf\\Composer52\\AutoloadGenerator' => $vendorDir . '/xrstf/composer-php52/lib/xrstf/Composer52/AutoloadGenerator.php',
    5050    'xrstf\\Composer52\\Generator' => $vendorDir . '/xrstf/composer-php52/lib/xrstf/Composer52/Generator.php',
  • easy-appointments/trunk/vendor/composer/autoload_namespaces.php

    r1474922 r3147273  
    88return array(
    99    'xrstf\\Composer52' => array($vendorDir . '/xrstf/composer-php52/lib'),
    10     'tad_DI52_' => array($vendorDir . '/lucatume/di52/src'),
     10    'tad_EA52_' => array($vendorDir . '/lucatume/di52/src'),
    1111);
  • easy-appointments/trunk/vendor/composer/autoload_static.php

    r2688534 r3147273  
    3939        't' =>
    4040        array (
    41             'tad_DI52_' =>
     41            'tad_EA52_' =>
    4242            array (
    4343                0 => __DIR__ . '/..' . '/lucatume/di52/src',
     
    8282        'Leuffen\\TextTemplate\\__BreakLoopException' => __DIR__ . '/..' . '/text/template/src/__BreakLoopException.php',
    8383        'Leuffen\\TextTemplate\\__ContinueLoopException' => __DIR__ . '/..' . '/text/template/src/__ContinueLoopException.php',
    84         'tad_DI52_Container' => __DIR__ . '/..' . '/lucatume/di52/src/tad/DI52/Container.php',
    85         'tad_DI52_ContainerInterface' => __DIR__ . '/..' . '/lucatume/di52/src/tad/DI52/ContainerInterface.php',
    86         'tad_DI52_ProtectedValue' => __DIR__ . '/..' . '/lucatume/di52/src/tad/DI52/ProtectedValue.php',
    87         'tad_DI52_ServiceProvider' => __DIR__ . '/..' . '/lucatume/di52/src/tad/DI52/ServiceProvider.php',
    88         'tad_DI52_ServiceProviderInterface' => __DIR__ . '/..' . '/lucatume/di52/src/tad/DI52/ServiceProviderInterface.php',
     84        'tad_EA52_Container' => __DIR__ . '/..' . '/lucatume/di52/src/tad/EA52/Container.php',
     85        'tad_EA52_ContainerInterface' => __DIR__ . '/..' . '/lucatume/di52/src/tad/EA52/ContainerInterface.php',
     86        'tad_EA52_ProtectedValue' => __DIR__ . '/..' . '/lucatume/di52/src/tad/EA52/ProtectedValue.php',
     87        'tad_EA52_ServiceProvider' => __DIR__ . '/..' . '/lucatume/di52/src/tad/EA52/ServiceProvider.php',
     88        'tad_EA52_ServiceProviderInterface' => __DIR__ . '/..' . '/lucatume/di52/src/tad/EA52/ServiceProviderInterface.php',
    8989        'xrstf\\Composer52\\AutoloadGenerator' => __DIR__ . '/..' . '/xrstf/composer-php52/lib/xrstf/Composer52/AutoloadGenerator.php',
    9090        'xrstf\\Composer52\\Generator' => __DIR__ . '/..' . '/xrstf/composer-php52/lib/xrstf/Composer52/Generator.php',
  • easy-appointments/trunk/vendor/composer/installed.json

    r2688534 r3147273  
    8181            "autoload": {
    8282                "psr-0": {
    83                     "tad_DI52_": [
     83                    "tad_EA52_": [
    8484                        "src/"
    8585                    ]
  • easy-appointments/trunk/vendor/composer/installed.php

    r2688534 r3147273  
    66        'install_path' => __DIR__ . '/../../',
    77        'aliases' => array(),
    8         'reference' => '48855819d56d256d11bbf75ed4ddfc386555f315',
     8        'reference' => '7db186f1852c306d1d01faa0fbbab01bd31a1765',
    99        'name' => 'loncar/easy-appointment',
    1010        'dev' => true,
     
    2626            'install_path' => __DIR__ . '/../../',
    2727            'aliases' => array(),
    28             'reference' => '48855819d56d256d11bbf75ed4ddfc386555f315',
     28            'reference' => '7db186f1852c306d1d01faa0fbbab01bd31a1765',
    2929            'dev_requirement' => false,
    3030        ),
  • easy-appointments/trunk/vendor/lucatume/di52/autoload.php

    r1873098 r3147273  
    11<?php
    2 if (!function_exists('di52_findFile')) {
    3     function di52_findFile($class)
     2if (!function_exists('ea52_findFile')) {
     3    function ea52_findFile($class)
    44    {
    5         if (0 !== strpos($class, 'tad_DI52_')) {
     5        if (0 !== strpos($class, 'tad_EA52_')) {
    66            return false;
    77        }
     
    1111}
    1212
    13 if (!function_exists('di52_autoload')) {
    14     function di52_autoload($class)
     13if (!function_exists('ea52_autoload')) {
     14    function ea52_autoload($class)
    1515    {
    16         $file = di52_findFile($class);
     16        $file = ea52_findFile($class);
    1717        if ($file) {
    1818            include $file;
     
    2525}
    2626
    27 spl_autoload_register('di52_autoload');
     27spl_autoload_register('ea52_autoload');
Note: See TracChangeset for help on using the changeset viewer.