| 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 Jetpack |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace Automattic\Jetpack\Scan; |
| 10 |
|
| 11 |
require_once 'class-admin-bar-notice.php'; |
| 12 |
require_once 'class-admin-sidebar-link.php'; |
| 13 |
|
| 14 |
Admin_Bar_Notice::instance(); |
| 15 |
Admin_Sidebar_Link::instance(); |
| 16 |
|