PluginProbe
FV Player 8 / 8.0.21
FV Player 8 v8.0.21
trunk 8.0.18 8.0.19 8.0.20 8.0.21 8.0.25 8.0.27 8.1 8.1.3
fv-player / models / migration-wizard.php

migration-wizard.php in FV Player 8 8.0.21, at models/migration-wizard.php

28 lines 594 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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;