admin-bar-notice.js
1 year ago
class-admin-bar-notice.php
6 months ago
class-admin-sidebar-link.php
4 months ago
scan.php
7 months ago
scan.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Jetpack Scan features that show up on the jetpack admin side. |
| 4 | * - Adds a admin bar notice when the site has threats. |
| 5 | * |
| 6 | * @package automattic/jetpack |
| 7 | */ |
| 8 | |
| 9 | namespace Automattic\Jetpack\Scan; |
| 10 | |
| 11 | if ( ! defined( 'ABSPATH' ) ) { |
| 12 | exit( 0 ); |
| 13 | } |
| 14 | |
| 15 | if ( ! apply_filters( 'jetpack_disable_scan', false ) ) { |
| 16 | require_once __DIR__ . '/class-admin-bar-notice.php'; |
| 17 | require_once __DIR__ . '/class-admin-sidebar-link.php'; |
| 18 | |
| 19 | Admin_Bar_Notice::instance(); |
| 20 | Admin_Sidebar_Link::instance(); |
| 21 | } |
| 22 |