# adminify/4.2.10/Inc/Modules/ServerInformation/ServerInfo_WP_Details.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 4.2.10. 352 lines.

- Page: https://pluginprobe.com/plugins/adminify/4.2.10/code/Inc/Modules/ServerInformation/ServerInfo_WP_Details.php
- Raw: https://pluginprobe.com/plugins/adminify/4.2.10/raw/Inc/Modules/ServerInformation/ServerInfo_WP_Details.php
- Modified: 2026-05-20T13:22:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminify/4.2.10/code/Inc/Modules/ServerInformation/ServerInfo_WP_Details.php#L10-L20`.

```php
<?php

namespace PXLBSAdminify\Inc\Modules\ServerInformation;

use PXLBSAdminify\Inc\Classes\ServerInfo;
use PXLBSAdminify\Inc\Utils;

// no direct access allowed
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * PXLBSAdminify
 *
 * @package Server Information
 *
 * @author WP Adminify <support@wpadminify.com>
 */

class ServerInfo_WP_Details {


	public function __construct() {
		$this->init();
	}

	public function init() {
		$server_info = new ServerInfo();

		$help        = '<span class="dashicons dashicons-editor-help"></span>';
		$enabled     = '<span class="adminify-compability enable"><span class="dashicons dashicons-yes"></span> ' . esc_html__( 'Enabled', 'adminify' ) . '</span>';
		$disabled    = '<span class="adminify-compability disable"><span class="dashicons dashicons-no"></span> ' . esc_html__( 'Disabled', 'adminify' ) . '</span>';
		$yes         = '<span class="adminify-compability enable"><span class="dashicons dashicons-yes"></span> ' . esc_html__( 'Yes', 'adminify' ) . '</span>';
		$no          = '<span class="adminify-compability disable"><span class="dashicons dashicons-no"></span> ' . esc_html__( 'No', 'adminify' ) . '</span>';
		$entered     = '<span class="adminify-compability enable"><span class="dashicons dashicons-yes"></span> ' . esc_html__( 'Defined', 'adminify' ) . '</span>';
		$not_entered = '<span class="adminify-compability disable"><span class="dashicons dashicons-no"></span> ' . esc_html__( 'Not defined', 'adminify' ) . '</span>';
		$sec_key     = '<span class="error"><span class="dashicons dashicons-warning"></span> ' . esc_html__( 'Please enter this security key in the wp-confiq.php file', 'adminify' ) . '!</span>';
		?>

		<div class="wrap">
			<h1><?php echo wp_kses_post( Utils::admin_page_title( esc_html__( 'Site Information', 'adminify' ) ) ); ?></h1>
		</div>


		<p><?php echo wp_kses_post( 'First, you can see the most important information about your WordPress installation at a glance. Learn more about the <a href="https://wordpress.org/about/requirements/" target="_blank" rel="noopener">requirements</a>' ); ?>.</p>
		</br>

		<table class="wp-list-table widefat posts mt-5">
			<thead>
				<tr>
					<th width="35%" class="manage-column"><?php esc_html_e( 'Info', 'adminify' ); ?></th>
					<th class="manage-column"><?php esc_html_e( 'Result', 'adminify' ); ?></th>
				</tr>
			</thead>
			<tbody>
				<tr>
					<td width="35%"><?php esc_html_e( 'WP Version', 'adminify' ); ?>:</td>
					<td><strong><?php bloginfo( 'version' ); ?></strong></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'PHP Version', 'adminify' ); ?>:</td>
					<td><?php echo wp_kses_post( Utils::kses_custom( $server_info->get_php_version() ) ); ?></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'MySQL Version', 'adminify' ); ?>:</td>
					<td><?php echo wp_kses_post( Utils::kses_custom( $server_info->get_mysql_version() ) ); ?></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'PHP Memory WP-Limit', 'adminify' ); ?>:</td>
					<td>
					<?php
						$memory = $server_info->convert_memory_size( WP_MEMORY_LIMIT );

					if ( $memory < 67108864 ) {
						// echo '<span class="warning"><span class="dashicons dashicons-warning"></span> ' . sprintf( __( '%1$s - For better performance, we recommend setting memory to at least 64MB. See: %2$s', 'adminify' ), size_format( $memory ), '<a href="https://wordpress.org/support/article/editing-wp-config-php/#increasing-memory-allocated-to-php" target="_blank" rel="noopener">' . __( 'Increasing memory allocated to PHP', 'adminify' ) . '</a>' ) . '</span>';

						echo sprintf(
							wp_kses_post( '<span class="warning"><span class="dashicons dashicons-warning"></span> %1$s - For better performance, we recommend setting memory to at least 64MB. See: <a href="https://wordpress.org/support/article/editing-wp-config-php/#increasing-memory-allocated-to-php" target="_blank" rel="noopener">%2$s</a></span>' ),
							esc_html(size_format( $memory )),
							esc_html__( 'Increasing memory allocated to PHP', 'adminify' )
						);
					} else {
						echo '<strong>' . esc_html( size_format( $memory ) ) . '</strong>';
					}
					?>
					</td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'PHP Memory Server-Limit', 'adminify' ); ?>:</td>
					<td>
						<?php
						if ( function_exists( 'memory_get_usage' ) ) {
							$system_memory = $server_info->convert_memory_size( @ini_get( 'memory_limit' ) );
							$memory        = max( $memory, $system_memory );
						}

						if ( $memory < 67108864 ) {
							// echo '<span class="warning"><span class="dashicons dashicons-warning"></span> ' . sprintf( __( '%1$s - For better performance, we recommend setting memory to at least 64MB. See: %2$s', 'adminify' ), esc_html( size_format( $memory ) ), '<a href="https://wordpress.org/support/article/editing-wp-config-php/#increasing-memory-allocated-to-php" target="_blank" rel="noopener">' . __( 'Increasing memory allocated to PHP', 'adminify' ) . '</a>' ) . '</span>';

							echo sprintf(
								wp_kses_post('<span class="warning"><span class="dashicons dashicons-warning"></span>%1$s - For better performance, we recommend setting memory to at least 64MB. See: <a href="https://wordpress.org/support/article/editing-wp-config-php/#increasing-memory-allocated-to-php" target="_blank" rel="noopener">%2$s</a></span>'),
								esc_html( size_format( $memory )),
								esc_html__( 'Increasing memory allocated to PHP', 'adminify' )
							);
						} else {
							echo '<strong>' . esc_html( size_format( $memory ) ) . '</strong>';
						}
						?>
					</td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'PHP Memory WP-Usage', 'adminify' ); ?>:</td>
					<td>
						<?php
						if ( $server_info->get_wp_memory_usage()['MemLimitGet'] == '-1' ) {
							echo wp_kses_post( Utils::kses_custom( $server_info->get_wp_memory_usage()['MemUsageFormat'] ) ) . ' ' . esc_html__( 'of', 'adminify' ) . ' ' . esc_html__( 'Unlimited', 'adminify' ) . ' (-1)';
						} else {
							echo wp_kses_post( Utils::kses_custom( $server_info->get_wp_memory_usage()['MemUsageFormat'] ) ) . ' ' . esc_html__( 'of', 'adminify' ) . ' ' . wp_kses_post( Utils::kses_custom( $server_info->get_wp_memory_usage()['MemLimitFormat'] ) );
							?>

							<div class="adminify-system-progress">
								<div class="status-progressbar">
									<span><?php echo wp_kses_post( Utils::kses_custom( $server_info->get_wp_memory_usage()['MemUsageCalc'] ) ) . '% '; ?></span>
									<div style="width: <?php echo esc_attr( Utils::kses_custom( $server_info->get_wp_memory_usage()['MemUsageCalc'] ) ); ?>%"></div>
								</div>
							</div>
						<?php } ?>
					</td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'PHP Memory Server-Usage', 'adminify' ); ?>:</td>
					<td>
						<?php
						if ( $server_info->get_server_memory_usage()['MemLimitGet'] == '-1' ) {
							echo wp_kses_post( Utils::kses_custom( $server_info->get_server_memory_usage()['MemUsageFormat'] ) ) . ' ' . esc_html__( 'of', 'adminify' ) . ' ' . esc_html__( 'Unlimited', 'adminify' ) . ' (-1)';
						} else {
							echo wp_kses_post( Utils::kses_custom( $server_info->get_server_memory_usage()['MemUsageFormat'] ) ) . ' ' . esc_html__( 'of', 'adminify' ) . ' ' . wp_kses_post( Utils::kses_custom( $server_info->get_server_memory_usage()['MemLimitFormat'] ) );
							?>
							<div class="adminify-system-progress">
								<div class="status-progressbar">
									<span><?php echo wp_kses_post( Utils::kses_custom( $server_info->get_server_memory_usage()['MemUsageCalc'] ) ) . '% '; ?></span>
									<div style="width: <?php echo esc_attr( $server_info->get_server_memory_usage()['MemUsageCalc'] ); ?>%"></div>
								</div>
							</div>
						<?php } ?>
					</td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'PHP Max Upload Size (WP)', 'adminify' ); ?>:</td>
					<td><?php echo esc_html( (int) ini_get( 'upload_max_filesize' ) . ' MB (' . size_format( wp_max_upload_size() ) . ')' ); ?></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'WP Home URL', 'adminify' ); ?>:</td>
					<td><?php echo esc_html( get_home_url() ); ?></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'WP Site URL', 'adminify' ); ?>:</td>
					<td><?php echo esc_html( get_site_url() ); ?></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'Document Root', 'adminify' ); ?>:</td>
					<td><?php echo esc_html( get_home_path() ); ?></td>
				</tr>
			</tbody>
		</table>

		<h2 class="pt-5"><?php echo esc_html__( 'Current Theme', 'adminify' ); ?></h2>

		<table class="wp-list-table widefat posts">
			<thead>
				<tr>
					<th width="35%" class="manage-column"><?php echo esc_html__( 'Info', 'adminify' ); ?></th>
					<th class="manage-column"><?php echo esc_html__( 'Result', 'adminify' ); ?></th>
				</tr>
			</thead>

			<tbody>
				<?php
				$active_theme  = wp_get_theme();
				$theme_version = $active_theme->Version;
				?>
				<tr>
					<td><?php esc_html_e( 'Name', 'adminify' ); ?>:</td>
					<td><?php echo wp_kses_post( $active_theme->Name ); ?></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'Version', 'adminify' ); ?>:</td>
					<td>
						<?php echo esc_html( $theme_version ); ?>
					</td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'Author URL', 'adminify' ); ?>:</td>
					<td><?php echo esc_url( $active_theme->{'Author URI'} ); ?></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'Image Sizes', 'adminify' ); ?>:</td>
					<td><?php echo esc_html( implode( ', ', get_intermediate_image_sizes() ) ); ?></td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'WooCommerce Compatibility', 'adminify' ); ?>:</td>
					<td>
						<?php
						if ( current_theme_supports( 'woocommerce' ) ) {
							echo wp_kses_post( $yes );
						} else {
							echo wp_kses_post( $no );
						}
						?>
					</td>
				</tr>

				<tr>
					<td><?php esc_html_e( 'Child Theme', 'adminify' ); ?>: <a href="https://developer.wordpress.org/themes/advanced-topics/child-themes/" target="_blank" rel="noopener"><?php echo wp_kses_post( $help ); ?></a></td>
					<td>
						<?php
						// echo is_child_theme() ? '<span class="yes"><span class="dashicons dashicons-yes"></span>Yes</span>' : '<span class="warning"><span class="dashicons dashicons-warning"></span> No. ' . sprintf( __( 'If you\'re want to modifying a theme, it safe to create a child theme.  See: <a href="%s" target="_blank" rel="noopener">How to create a child theme</a>', 'adminify' ), 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ) . '</span>';
						?>

						<?php echo is_child_theme() ?
							wp_kses_post('<span class="yes"><span class="dashicons dashicons-yes"></span>Yes</span>'):
							sprintf(
								wp_kses_post('<span class="warning"><span class="dashicons dashicons-warning"></span> No. If you\'re want to modifying a theme, it safe to create a child theme.  See: <a href="%1$s" target="_blank" rel="noopener">%2$s</a></span>'),
								esc_url('https://developer.wordpress.org/themes/advanced-topics/child-themes/'),
								esc_html__('How to create a child theme','adminify')
							);
						?>
					</td>
				</tr>

				<?php
				if ( is_child_theme() ) {
					$parent_theme = wp_get_theme()->parent();
					?>
					<tr>
						<td><?php esc_html_e( 'Parent Theme Name', 'adminify' ); ?>:</td>
						<td>
						<?php
						if ( ! empty( $parent_theme ) ) {
							echo esc_html( $parent_theme->Name );}
						?>
						</td>
					</tr>
					<tr>
						<td><?php esc_html_e( 'Parent Theme Version', 'adminify' ); ?>:</td>
						<td>
							<?php
							if ( ! empty( $parent_theme ) ) {
								echo esc_html( $parent_theme->Version );}
							if ( version_compare( $parent_theme->Version, $update_theme_version, '<' ) ) {
								// echo ' &ndash; <strong style="color:red;">' . sprintf( __( '%s is available', 'adminify' ), esc_html( $update_theme_version ) ) . '</strong>';
								echo sprintf(
									wp_kses_post(' &ndash; <strong style="color:red;"> %s is available</strong>'),
									esc_html( $update_theme_version )
								);
							}
							?>
						</td>
					</tr>
					<tr>
						<td><?php esc_html_e( 'Parent Theme Author URL', 'adminify' ); ?>:</td>
						<td>
						<?php
						if ( ! empty( $parent_theme ) ) {
							echo esc_url( $parent_theme->{'Author URI'} );}
						?>
						</td>
					</tr>
				<?php } //is_child_theme ?>

			</tbody>
		</table>

		<div class="adminify-flex-center adminify-justify-between">
			<h2 class="is-pulled-left pt-5"><?php echo esc_html__( 'Active Plugins', 'adminify' ); ?></h2>

			<button class="adminify-copy-btn adminify-btn adminify-btn-primary is-pulled-right" data-text="COPY" data-text-copied="COPIED">
				<span class="icon icon-copy dashicons dashicons-admin-page"></span>
				<span><?php esc_html_e( 'COPY', 'adminify' ); ?></span>
			</button>
		</div>


		<table class="wp-list-table widefat posts adminify-active-plugins-data">
			<thead>
				<tr>
					<th width="35%" class="manage-column"><?php echo esc_html__( 'Name', 'adminify' ); ?></th>
					<th class="manage-column"><?php echo esc_html__( 'Version', 'adminify' ); ?></th>
					<th width="35%" class="manage-column"><?php echo esc_html__( 'Author', 'adminify' ); ?></th>
				</tr>
			</thead>
			<tbody>
				<?php
				$active_plugins = (array) get_option( 'active_plugins', [] );

				if ( is_multisite() ) {
					$network_activated_plugins = array_keys( get_site_option( 'active_sitewide_plugins', [] ) );
					$active_plugins            = array_merge( $active_plugins, $network_activated_plugins );
				}

				foreach ( $active_plugins as $plugin ) {
					$plugin_data    = @get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin );
					$dirname        = dirname( $plugin );
					$version_string = '';
					$network_string = '';

					if ( ! empty( $plugin_data['Name'] ) ) {

						// Link the plugin name to the plugin url if available.
						$plugin_name = esc_html( $plugin_data['Name'] );

						if ( ! empty( $plugin_data['PluginURI'] ) ) {
							$plugin_name = '<a href="' . esc_url( $plugin_data['PluginURI'] ) . '" title="' . esc_attr__( 'Visit plugin homepage', 'adminify' ) . '" target="_blank" rel="noopener">' . $plugin_name . '</a>';
						}

						if ( ! empty( $plugin_data['Network'] ) ) {
							$network_string = ' &ndash; <strong style="color:black;">' . __( 'Network enabled', 'adminify' ) . '</strong>';
						}
						?>
						<tr>
							<td><?php echo wp_kses_post( $plugin_name ); ?></td>
							<td><?php echo esc_html( $plugin_data['Version'] ) .wp_kses_post( $version_string) . wp_kses_post($network_string); ?></td>
							<td><?php echo wp_kses_post( $plugin_data['Author'] ); ?></td>
						</tr>
						<?php
					}
				}
				?>
			</tbody>
		</table>


		<?php

	}
}

```
