golden hour
/home/doctorbruno/public_html/pgmed.org/wp-content/plugins/jetpack/modules/scan
⬆️ Go Up
Upload
File/Folder
Size
Actions
admin-bar-notice.js
1.4 KB
Del
OK
class-admin-bar-notice.php
6.62 KB
Del
OK
class-admin-sidebar-link.php
5.8 KB
Del
OK
scan.php
490 B
Del
OK
Edit: scan.php
<?php /** * Jetpack Scan features that show up on the jetpack admin side. * - Adds a admin bar notice when the site has threats. * * @package automattic/jetpack */ namespace Automattic\Jetpack\Scan; if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } if ( ! apply_filters( 'jetpack_disable_scan', false ) ) { require_once __DIR__ . '/class-admin-bar-notice.php'; require_once __DIR__ . '/class-admin-sidebar-link.php'; Admin_Bar_Notice::instance(); Admin_Sidebar_Link::instance(); }
Save