at path:
ROOT
/
wp-content
/
plugins
/
jetpack
/
3rd-party
/
atomic.php
run:
R
W
Run
debug-bar
DIR
2026-04-17 06:07:54
R
W
Run
3rd-party.php
2.9 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
amp.php
792 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
atomic.php
1.04 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
bbpress.php
2.08 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
beaverbuilder.php
524 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
bitly.php
1 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
buddypress.php
550 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
class-domain-mapping.php
4.17 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
class-jetpack-bbpress-rest-api.php
4.39 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
class.jetpack-amp-support.php
16 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
creative-mail.php
3.26 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
debug-bar.php
780 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
jetpack-backup.php
2.75 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
jetpack-boost.php
2.8 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
qtranslate-x.php
681 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
vaultpress.php
2.15 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
web-stories.php
979 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
woocommerce-services.php
3.45 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
woocommerce.php
3.82 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
wpcom-reader.php
1.79 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
wpml.php
1.64 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
error_log
up
📄
atomic.php
Save
<?php /** * Helper functions for the Atomic platform. * * @package automattic/jetpack */ namespace Automattic\Jetpack\Third_Party; use Automattic\Jetpack\Constants; use Automattic\Jetpack\Status\Host; if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } /** * Handles suppressing development version notices on Atomic-hosted sites. * * @param bool $development_version Filterable value if this is a development version of Jetpack. * * @return bool */ function atomic_weekly_override( $development_version ) { if ( ( new Host() )->is_atomic_platform() ) { $haystack = Constants::get_constant( 'JETPACK__PLUGIN_DIR' ); $needle = '/jetpack-dev/'; if ( str_ends_with( $haystack, $needle ) ) { return $development_version; // Returns the default response if the active Jetpack version is from the beta plugin. } $development_version = false; // Returns false for regular installs on Atomic. } return $development_version; // Return default if not on Atomic. } add_filter( 'jetpack_development_version', __NAMESPACE__ . '\atomic_weekly_override' );