mirror of
https://gh.wpcy.net/https://github.com/boldthemes/wp-juggler-server.git
synced 2026-05-09 22:55:45 +08:00
28 lines
347 B
PHP
28 lines
347 B
PHP
<?php
|
|
/**
|
|
* Displays the "System Info" tab.
|
|
*
|
|
* @link https://wpjuggler.com
|
|
* @since 1.0.0
|
|
*
|
|
* @package WP_Juggler_Server
|
|
* @subpackage WP_Juggler_Server/includes
|
|
*/
|
|
|
|
// Prevent direct access.
|
|
if ( ! defined( 'WPJS_PATH' ) ) exit;
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<div class="ui-sidebar-wrapper">
|
|
|
|
Cakma
|
|
|
|
</div>
|
|
|
|
<?php
|
|
get_footer();
|
|
?>
|
|
|
|
|