Sin descripción

scan.php 357B

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