1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php require_once( dirname( __FILE__ ) . '/class-itsec-core-active.php' ); require_once( dirname( __FILE__ ) . '/class-itsec-core-admin.php' ); require_once( dirname( __FILE__ ) . '/class-itsec-admin-notices.php' );
$active = new ITSEC_Core_Active(); $active->run();
$admin = new ITSEC_Core_Admin(); $admin->run();
$notices = new ITSEC_Admin_Notices(); $notices->run();
|