| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
|
| 7 |
if( !class_exists('FV_Player_Migration') ) : |
| 8 |
|
| 9 |
class FV_Player_Migration { |
| 10 |
|
| 11 |
function __construct() { |
| 12 |
add_action('admin_menu', array( $this, 'admin_page' ) ); |
| 13 |
} |
| 14 |
|
| 15 |
function admin_page() { |
| 16 |
add_submenu_page( 'fv_player', 'FV Player Migration', 'FV Player Migration', 'edit_posts', 'fv_player_migration', array($this, 'tools_panel') ); |
| 17 |
remove_submenu_page( 'fv_player', 'fv_player_migration' ); |
| 18 |
} |
| 19 |
|
| 20 |
function tools_panel() { |
| 21 |
FV_Player_Migration_Wizard()->view(); |
| 22 |
} |
| 23 |
|
| 24 |
} |
| 25 |
|
| 26 |
$FV_Player_Migration = new FV_Player_Migration; |
| 27 |
|
| 28 |
endif; |