| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/forum/wp-content/plugins/simplepress/admin/panel-integration/ |
Upload File : |
<?php
/*
Simple:Press
Admin Integration
$LastChangedDate: 2018-11-02 13:31:02 -0500 (Fri, 02 Nov 2018) $
$Rev: 15796 $
*/
if ( ! defined( 'ABSPATH' ) ) {
die('Access denied - you cannot directly call this file');
}
# Check Whether User Can Manage Integration
if (!SP()->auths->current_user_can('SPF Manage Integration')) die();
require_once SP_PLUGIN_DIR.'/admin/panel-integration/spa-integration-display.php';
include_once SP_PLUGIN_DIR.'/admin/panel-integration/support/spa-integration-prepare.php';
include_once SP_PLUGIN_DIR.'/admin/library/spa-tab-support.php';
if (SP()->core->status != 'ok') {
include_once SPLOADINSTALL;
die();
}
global $adminhelpfile;
$adminhelpfile = 'admin-integration';
# --------------------------------------------------------------------
$tab = (isset($_GET['tab'])) ? sanitize_text_field($_GET['tab']) : 'page';
spa_panel_header();
spa_render_integration_panel($tab);
spa_panel_footer();