Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
n/a
0 / 0
CRAP
n/a
0 / 0
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
9namespace Automattic\Jetpack\Scan;
10
11if ( ! defined( 'ABSPATH' ) ) {
12    exit( 0 );
13}
14
15if ( ! 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}