admin-bar-notice.js
6 years ago
class-admin-bar-notice.php
3 years ago
class-admin-sidebar-link.php
3 years ago
scan.php
4 years ago
scan.php
16 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 | require_once __DIR__ . '/class-admin-bar-notice.php'; |
| 12 | require_once __DIR__ . '/class-admin-sidebar-link.php'; |
| 13 | |
| 14 | Admin_Bar_Notice::instance(); |
| 15 | Admin_Sidebar_Link::instance(); |
| 16 |