16 lines
294 B
PHP
16 lines
294 B
PHP
<?php
|
|
/**
|
|
* Dashboard Page - Redirects to Connection Page
|
|
*
|
|
* @package Igny8Bridge
|
|
*/
|
|
|
|
// Prevent direct access
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
// Redirect to connection page (Dashboard is now merged with Connection)
|
|
wp_redirect(admin_url('admin.php?page=igny8-connection'));
|
|
exit;
|