debug-bar
4 years ago
3rd-party.php
3 years ago
amp.php
3 years ago
atomic.php
2 years ago
bbpress.php
3 years ago
beaverbuilder.php
5 years ago
bitly.php
3 years ago
buddypress.php
5 years ago
class-domain-mapping.php
4 years ago
class-jetpack-bbpress-rest-api.php
2 years ago
class-salesforce-lead-form.php
3 years ago
class.jetpack-amp-support.php
2 years ago
creative-mail.php
3 years ago
crowdsignal.php
5 years ago
debug-bar.php
5 years ago
jetpack-backup.php
3 years ago
jetpack-boost.php
3 years ago
qtranslate-x.php
2 years ago
vaultpress.php
2 years ago
web-stories.php
5 years ago
woocommerce-services.php
3 years ago
woocommerce.php
2 years ago
wpml.php
5 years ago
crowdsignal.php
24 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Fallback for the Crowdsignal Plugin. |
| 4 | * |
| 5 | * The PollDaddy/Crowdsignal prior to v. 2.033 called Jetpack_Sync as long as the Jetpack class was present. This stub is provided to prevent any fatals for older versions of the plugin. |
| 6 | * This was resolved in 2016, but need to do just a little research before ripping it out. |
| 7 | * |
| 8 | * @see https://github.com/Automattic/crowdsignal-plugin/commit/941fc5758152ebf860a14d1cd0058245e8aed86b |
| 9 | * |
| 10 | * @package automattic/jetpack |
| 11 | */ |
| 12 | |
| 13 | /** |
| 14 | * Stub of Jetpack_Sync for Crowdsignal. |
| 15 | */ |
| 16 | class Jetpack_Sync { |
| 17 | /** |
| 18 | * Stub of sync_options to prevent fatals for Crowdsignal. |
| 19 | */ |
| 20 | public static function sync_options() { |
| 21 | _deprecated_function( __METHOD__, 'jetpack-4.2', 'jetpack_options_whitelist filter' ); |
| 22 | } |
| 23 | } |
| 24 |