16 lines
346 B
PHP
16 lines
346 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Jetpack Scan features that show up on the jetpack admin side.
|
||
|
|
* - Adds a admin bar notice when the site has threats.
|
||
|
|
*
|
||
|
|
* @package Jetpack
|
||
|
|
*/
|
||
|
|
|
||
|
|
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();
|