2020-06-23 13:49:54 +02:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Jetpack Scan features that show up on the jetpack admin side.
|
|
|
|
|
* - Adds a admin bar notice when the site has threats.
|
|
|
|
|
*
|
2021-04-27 08:32:47 +02:00
|
|
|
* @package automattic/jetpack
|
2020-06-23 13:49:54 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Automattic\Jetpack\Scan;
|
|
|
|
|
|
|
|
|
|
require_once 'class-admin-bar-notice.php';
|
|
|
|
|
require_once 'class-admin-sidebar-link.php';
|
|
|
|
|
|
|
|
|
|
Admin_Bar_Notice::instance();
|
|
|
|
|
Admin_Sidebar_Link::instance();
|