at path:
ROOT
/
wp-content
/
plugins
/
wplr-sync
/
classes
/
ui.php
run:
R
W
Run
admin.php
43.65 KB
2025-12-03 14:11:38
R
W
Run
Delete
Rename
api.php
11.32 KB
2026-04-15 13:09:44
R
W
Run
Delete
Rename
core.php
79.15 KB
2026-04-15 13:09:44
R
W
Run
Delete
Rename
error.php
3.68 KB
2021-05-20 07:11:02
R
W
Run
Delete
Rename
explorer.php
2.92 KB
2026-01-27 09:01:44
R
W
Run
Delete
Rename
init.php
3.82 KB
2025-11-13 15:52:46
R
W
Run
Delete
Rename
keywords.php
3.36 KB
2026-04-25 14:46:28
R
W
Run
Delete
Rename
lrinfo.php
1.67 KB
2021-05-20 07:11:02
R
W
Run
Delete
Rename
public_api.php
4.91 KB
2024-10-17 12:37:14
R
W
Run
Delete
Rename
response.php
4.78 KB
2021-05-20 07:11:02
R
W
Run
Delete
Rename
rest.php
39.6 KB
2026-02-25 20:11:08
R
W
Run
Delete
Rename
troubleshoot.php
2.43 KB
2021-05-20 07:11:02
R
W
Run
Delete
Rename
ui.php
493 By
2021-05-20 07:11:02
R
W
Run
Delete
Rename
wplr-sync.log
20.83 KB
2023-09-08 12:37:56
R
W
Run
Delete
Rename
error_log
up
📄
ui.php
Save
<?php class Meow_WPLR_Sync_UI { private $core = null; function __construct( $core ) { $this->core = $core; add_action( 'admin_menu', array( $this, 'admin_menu' ) ); } function admin_menu() { if (get_option( 'wplr_media_organizer' )) { add_media_page( 'Organizer', __( 'Organizer', 'wplr-sync' ), 'read', 'wplr_sync_dashboard', array( $this, 'wplr_sync_dashboard' ), 1 ); } } public function wplr_sync_dashboard() { echo '<div id="wplr-sync-dashboard"></div>'; } }