Changeset 3147273
- Timestamp:
- 09/05/2024 08:37:59 PM (19 months ago)
- Location:
- easy-appointments/trunk
- Files:
-
- 9 added
- 2 deleted
- 9 edited
-
components/bootstrap/css/ea-bootstrap.css (added)
-
components/bootstrap/css/ea-bootstrap.less (added)
-
main.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
src/api/mainapi.php (modified) (1 diff)
-
vendor/composer/autoload_classmap.php (modified) (1 diff)
-
vendor/composer/autoload_namespaces.php (modified) (1 diff)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
-
vendor/composer/installed.json (modified) (1 diff)
-
vendor/composer/installed.php (modified) (2 diffs)
-
vendor/lucatume/di52/autoload.php (modified) (3 diffs)
-
vendor/lucatume/di52/src/tad/DI52 (deleted)
-
vendor/lucatume/di52/src/tad/EA52 (added)
-
vendor/lucatume/di52/src/tad/EA52/Container.php (added)
-
vendor/lucatume/di52/src/tad/EA52/ContainerInterface.php (added)
-
vendor/lucatume/di52/src/tad/EA52/ProtectedValue.php (added)
-
vendor/lucatume/di52/src/tad/EA52/ServiceProvider.php (added)
-
vendor/lucatume/di52/src/tad/EA52/ServiceProviderInterface.php (added)
-
vendor/lucatume/di52/src/tad/EA52/closuresSupport.php (added)
-
vendor/lucatume/di52/tests (deleted)
Legend:
- Unmodified
- Added
- Removed
-
easy-appointments/trunk/main.php
r3131833 r3147273 5 5 * Plugin URI: https://easy-appointments.com/ 6 6 * Description: Simple and easy to use management system for Appointments and Bookings 7 * Version: 3.1 1.227 * Version: 3.12.0 8 8 * Requires PHP: 5.3 9 9 * Author: Nikola Loncar … … 22 22 * Currently plugin version. 23 23 */ 24 define( 'EASY_APPOINTMENTS_VERSION', '3.1 1.21' );24 define( 'EASY_APPOINTMENTS_VERSION', '3.12.0' ); 25 25 26 26 // path for source files … … 141 141 global $wpdb; 142 142 143 $this->container = new tad_ DI52_Container();143 $this->container = new tad_EA52_Container(); 144 144 $this->container['wpdb'] = $wpdb; 145 145 $this->container['utils'] = new EAUtils(); … … 203 203 204 204 /** 205 * @return tad_ DI52_Container205 * @return tad_EA52_Container 206 206 */ 207 207 public function get_container() -
easy-appointments/trunk/readme.txt
r3131833 r3147273 6 6 Tested up to: 6.6 7 7 Requires PHP: 5.3 8 Stable tag: 3.1 1.228 Stable tag: 3.12.0 9 9 License: GPLv2 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 214 214 == Changelog == 215 215 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) = 217 220 * Moved from .NET to .COM so new home for EasyAppointments is https://easy-appointments.com 218 221 -
easy-appointments/trunk/src/api/mainapi.php
r2459226 r3147273 5 5 /** 6 6 * EAMainApi constructor. 7 * @param tad_ DI52_Container $container7 * @param tad_EA52_Container $container 8 8 */ 9 9 public function __construct($container) -
easy-appointments/trunk/vendor/composer/autoload_classmap.php
r2688534 r3147273 42 42 'Leuffen\\TextTemplate\\__BreakLoopException' => $vendorDir . '/text/template/src/__BreakLoopException.php', 43 43 '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', 49 49 'xrstf\\Composer52\\AutoloadGenerator' => $vendorDir . '/xrstf/composer-php52/lib/xrstf/Composer52/AutoloadGenerator.php', 50 50 'xrstf\\Composer52\\Generator' => $vendorDir . '/xrstf/composer-php52/lib/xrstf/Composer52/Generator.php', -
easy-appointments/trunk/vendor/composer/autoload_namespaces.php
r1474922 r3147273 8 8 return array( 9 9 'xrstf\\Composer52' => array($vendorDir . '/xrstf/composer-php52/lib'), 10 'tad_ DI52_' => array($vendorDir . '/lucatume/di52/src'),10 'tad_EA52_' => array($vendorDir . '/lucatume/di52/src'), 11 11 ); -
easy-appointments/trunk/vendor/composer/autoload_static.php
r2688534 r3147273 39 39 't' => 40 40 array ( 41 'tad_ DI52_' =>41 'tad_EA52_' => 42 42 array ( 43 43 0 => __DIR__ . '/..' . '/lucatume/di52/src', … … 82 82 'Leuffen\\TextTemplate\\__BreakLoopException' => __DIR__ . '/..' . '/text/template/src/__BreakLoopException.php', 83 83 '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', 89 89 'xrstf\\Composer52\\AutoloadGenerator' => __DIR__ . '/..' . '/xrstf/composer-php52/lib/xrstf/Composer52/AutoloadGenerator.php', 90 90 'xrstf\\Composer52\\Generator' => __DIR__ . '/..' . '/xrstf/composer-php52/lib/xrstf/Composer52/Generator.php', -
easy-appointments/trunk/vendor/composer/installed.json
r2688534 r3147273 81 81 "autoload": { 82 82 "psr-0": { 83 "tad_ DI52_": [83 "tad_EA52_": [ 84 84 "src/" 85 85 ] -
easy-appointments/trunk/vendor/composer/installed.php
r2688534 r3147273 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 48855819d56d256d11bbf75ed4ddfc386555f315',8 'reference' => '7db186f1852c306d1d01faa0fbbab01bd31a1765', 9 9 'name' => 'loncar/easy-appointment', 10 10 'dev' => true, … … 26 26 'install_path' => __DIR__ . '/../../', 27 27 'aliases' => array(), 28 'reference' => ' 48855819d56d256d11bbf75ed4ddfc386555f315',28 'reference' => '7db186f1852c306d1d01faa0fbbab01bd31a1765', 29 29 'dev_requirement' => false, 30 30 ), -
easy-appointments/trunk/vendor/lucatume/di52/autoload.php
r1873098 r3147273 1 1 <?php 2 if (!function_exists(' di52_findFile')) {3 function di52_findFile($class)2 if (!function_exists('ea52_findFile')) { 3 function ea52_findFile($class) 4 4 { 5 if (0 !== strpos($class, 'tad_ DI52_')) {5 if (0 !== strpos($class, 'tad_EA52_')) { 6 6 return false; 7 7 } … … 11 11 } 12 12 13 if (!function_exists(' di52_autoload')) {14 function di52_autoload($class)13 if (!function_exists('ea52_autoload')) { 14 function ea52_autoload($class) 15 15 { 16 $file = di52_findFile($class);16 $file = ea52_findFile($class); 17 17 if ($file) { 18 18 include $file; … … 25 25 } 26 26 27 spl_autoload_register(' di52_autoload');27 spl_autoload_register('ea52_autoload');
Note: See TracChangeset
for help on using the changeset viewer.