Changeset 3495260
- Timestamp:
- 03/31/2026 07:51:56 AM (42 hours ago)
- Location:
- recras
- Files:
-
- 10 edited
- 1 copied
-
tags/6.5.4 (copied) (copied from recras/trunk)
-
tags/6.5.4/changelog.md (modified) (1 diff)
-
tags/6.5.4/readme.txt (modified) (2 diffs)
-
tags/6.5.4/recras-wordpress-plugin.php (modified) (1 diff)
-
tags/6.5.4/src/OnlineBooking.php (modified) (2 diffs)
-
tags/6.5.4/src/Settings.php (modified) (1 diff)
-
trunk/changelog.md (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/recras-wordpress-plugin.php (modified) (1 diff)
-
trunk/src/OnlineBooking.php (modified) (2 diffs)
-
trunk/src/Settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
recras/tags/6.5.4/changelog.md
r3484591 r3495260 1 1 # Changelog 2 3 ## 6.5.4 (2026-03-31) 4 * Updated "Tested up to" version to 7.0 5 * Plugin now requires WP 6.8 or higher 6 * Fix warning when using PHP 8.4 2 7 3 8 ## 6.5.3 (2026-03-17) -
recras/tags/6.5.4/readme.txt
r3484591 r3495260 2 2 Contributors: zanderz 3 3 Tags: recras, recreation, reservation, booking, voucher 4 Tested up to: 6.95 Stable tag: 6.5. 34 Tested up to: 7.0 5 Stable tag: 6.5.4 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 == Changelog == 76 76 77 = 6.5.4 = 78 * Updated "Tested up to" version to 7.0 79 * Plugin now requires WP 6.8 or higher 80 * Fix warning when using PHP 8.4 81 77 82 = 6.5.3 = 78 83 * Styling fix for Gutenberg info texts -
recras/tags/6.5.4/recras-wordpress-plugin.php
r3484591 r3495260 3 3 Plugin Name: Recras 4 4 Plugin URI: https://www.recras.com/ 5 Version: 6.5. 35 Version: 6.5.4 6 6 Description: Easily integrate your Recras data into your own site 7 Requires at least: 6. 77 Requires at least: 6.8 8 8 Requires PHP: 7.4.0 9 9 Author: Recras -
recras/tags/6.5.4/src/OnlineBooking.php
r3432851 r3495260 103 103 104 104 105 private static function generateBookingForm(string $instance, int $arrangementID = null, array $libraryOptions = []): string105 private static function generateBookingForm(string $instance, ?int $arrangementID = null, array $libraryOptions = []): string 106 106 { 107 107 $generatedDivID = uniqid('B'); … … 157 157 } 158 158 159 private static function generateIframe(string $instance, int $arrangementID = null, bool $enableResize = true): string159 private static function generateIframe(string $instance, ?int $arrangementID = null, bool $enableResize = true): string 160 160 { 161 161 $url = 'https://' . $instance . '/onlineboeking'; -
recras/tags/6.5.4/src/Settings.php
r3484591 r3495260 321 321 } 322 322 323 private static function registerSetting(string $name, $default, string $type = 'string', callable $sanitizeCallback = null): void323 private static function registerSetting(string $name, $default, string $type = 'string', ?callable $sanitizeCallback = null): void 324 324 { 325 325 $options = [ -
recras/trunk/changelog.md
r3484591 r3495260 1 1 # Changelog 2 3 ## 6.5.4 (2026-03-31) 4 * Updated "Tested up to" version to 7.0 5 * Plugin now requires WP 6.8 or higher 6 * Fix warning when using PHP 8.4 2 7 3 8 ## 6.5.3 (2026-03-17) -
recras/trunk/readme.txt
r3484591 r3495260 2 2 Contributors: zanderz 3 3 Tags: recras, recreation, reservation, booking, voucher 4 Tested up to: 6.95 Stable tag: 6.5. 34 Tested up to: 7.0 5 Stable tag: 6.5.4 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 == Changelog == 76 76 77 = 6.5.4 = 78 * Updated "Tested up to" version to 7.0 79 * Plugin now requires WP 6.8 or higher 80 * Fix warning when using PHP 8.4 81 77 82 = 6.5.3 = 78 83 * Styling fix for Gutenberg info texts -
recras/trunk/recras-wordpress-plugin.php
r3484591 r3495260 3 3 Plugin Name: Recras 4 4 Plugin URI: https://www.recras.com/ 5 Version: 6.5. 35 Version: 6.5.4 6 6 Description: Easily integrate your Recras data into your own site 7 Requires at least: 6. 77 Requires at least: 6.8 8 8 Requires PHP: 7.4.0 9 9 Author: Recras -
recras/trunk/src/OnlineBooking.php
r3432851 r3495260 103 103 104 104 105 private static function generateBookingForm(string $instance, int $arrangementID = null, array $libraryOptions = []): string105 private static function generateBookingForm(string $instance, ?int $arrangementID = null, array $libraryOptions = []): string 106 106 { 107 107 $generatedDivID = uniqid('B'); … … 157 157 } 158 158 159 private static function generateIframe(string $instance, int $arrangementID = null, bool $enableResize = true): string159 private static function generateIframe(string $instance, ?int $arrangementID = null, bool $enableResize = true): string 160 160 { 161 161 $url = 'https://' . $instance . '/onlineboeking'; -
recras/trunk/src/Settings.php
r3484591 r3495260 321 321 } 322 322 323 private static function registerSetting(string $name, $default, string $type = 'string', callable $sanitizeCallback = null): void323 private static function registerSetting(string $name, $default, string $type = 'string', ?callable $sanitizeCallback = null): void 324 324 { 325 325 $options = [
Note: See TracChangeset
for help on using the changeset viewer.