Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| Package_Version | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| send_package_version_to_tracker | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * The Package_Version class. |
| 4 | * |
| 5 | * @package automattic/jetpack-transport-helper |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Transport_Helper; |
| 9 | |
| 10 | /** |
| 11 | * The Package_Version class. |
| 12 | * |
| 13 | * Does *not* use namespaced versioning ("VXXXX") because send_package_version_to_tracker() is used as a |
| 14 | * "jetpack_package_versions" filter, and said filter gets run during a plugin upgrade, so it always expects to |
| 15 | * find the "Package_Version" class with the same namespace, name, and interface. |
| 16 | */ |
| 17 | class Package_Version { |
| 18 | |
| 19 | const PACKAGE_VERSION = '0.3.5'; |
| 20 | |
| 21 | const PACKAGE_SLUG = 'transport-helper'; |
| 22 | |
| 23 | /** |
| 24 | * Adds the package slug and version to the package version tracker's data. |
| 25 | * |
| 26 | * @param array $package_versions The package version array. |
| 27 | * |
| 28 | * @return array The package version array. |
| 29 | */ |
| 30 | public static function send_package_version_to_tracker( $package_versions ) { |
| 31 | $package_versions[ self::PACKAGE_SLUG ] = self::PACKAGE_VERSION; |
| 32 | |
| 33 | return $package_versions; |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | // For compatibility with plugins that had a broken version of the package, this file needs to define the "V0001"-namespaced class |
| 38 | // because this filename is what the old plugins' autoloader will be loading. So load the file that defines that class now. |
| 39 | if ( ! class_exists( \Automattic\Jetpack\Transport_Helper\V0001\Package_Version::class, false ) ) { |
| 40 | require __DIR__ . '/class-package-version-compat.php'; |
| 41 | } |