abilities
2 months ago
class-initial-state.php
8 months ago
class-jetpack-backup-upgrades.php
1 year ago
class-jetpack-backup.php
3 weeks ago
class-package-version-compat.php
2 years ago
class-package-version.php
3 weeks ago
class-rest-controller.php
2 months ago
class-package-version-compat.php
24 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * The Package_Version class's compatibility shim. |
| 4 | * |
| 5 | * @package automattic/jetpack-backup |
| 6 | */ |
| 7 | |
| 8 | // Do *not* update the "V0001" namespace version on changes. |
| 9 | namespace Automattic\Jetpack\Backup\V0001; |
| 10 | |
| 11 | /** |
| 12 | * Package_Version proxy class to accommodate upgrades from plugin version 2.4. |
| 13 | * |
| 14 | * Backup plugin version 2.4 had a versioned class defined ("Automattic\Jetpack\Backup\V0001\Package_Version"), so |
| 15 | * the "jetpack_package_versions" filter will try to look for the class with this namespace + name in the newer |
| 16 | * plugin's code. |
| 17 | */ |
| 18 | class Package_Version { |
| 19 | // phpcs:ignore Squiz.Commenting.FunctionComment.Missing |
| 20 | public static function send_package_version_to_tracker( $package_versions ) { |
| 21 | return \Automattic\Jetpack\Backup\Package_Version::send_package_version_to_tracker( $package_versions ); |
| 22 | } |
| 23 | } |
| 24 |