'Version', 'site_url' => 'Site URL', 'home_url' => 'Home URL', 'is_multisite' => 'WP Multisite', 'max_upload_size' => 'Max Upload Size', 'memory_limit' => 'Memory limit', 'permalink_structure' => 'Permalink Structure', 'language' => 'Language', 'timezone' => 'Timezone', 'admin_email' => 'Admin Email', 'debug_mode' => 'Debug Mode', ]; } /** * @access public * @since 1.0.0 */ public function get_memory_limit() { $result = [ 'value' => WP_MEMORY_LIMIT, ]; $min_recommended_memory = '64M'; $memory_limit_bytes = wp_convert_hr_to_bytes( WP_MEMORY_LIMIT ); $min_recommended_bytes = wp_convert_hr_to_bytes( $min_recommended_memory ); if ( $memory_limit_bytes < $min_recommended_bytes ) { $result['recommendation'] = sprintf( _x( 'We recommend setting memory to at least %1$s. For more information, read about how to Increase memory allocated to PHP.', 'System Info', 'elementor' ), $min_recommended_memory, 'https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP' ); $result['warning'] = true; } return $result; } /** * @access public * @since 1.0.0 */ public function get_version() { return [ 'value' => get_bloginfo( 'version' ), ]; } /** * @access public * @since 1.0.0 */ public function get_is_multisite() { return [ 'value' => is_multisite() ? 'Yes' : 'No', ]; } /** * @access public * @since 1.0.0 */ public function get_site_url() { return [ 'value' => get_site_url(), ]; } /** * @access public * @since 1.0.0 */ public function get_home_url() { return [ 'value' => get_home_url(), ]; } /** * @access public * @since 1.0.0 */ public function get_permalink_structure() { global $wp_rewrite; $structure = $wp_rewrite->permalink_structure; if ( ! $structure ) { $structure = 'Plain'; } return [ 'value' => $structure, ]; } /** * @access public * @since 1.0.0 */ public function get_language() { return [ 'value' => get_bloginfo( 'language' ), ]; } /** * @access public * @since 1.0.0 */ public function get_max_upload_size() { return [ 'value' => size_format( wp_max_upload_size() ), ]; } /** * @access public * @since 1.0.0 */ public function get_timezone() { $timezone = get_option( 'timezone_string' ); if ( ! $timezone ) { $timezone = get_option( 'gmt_offset' ); } return [ 'value' => $timezone, ]; } /** * @access public * @since 1.0.0 */ public function get_admin_email() { return [ 'value' => get_option( 'admin_email' ), ]; } /** * @access public * @since 1.0.0 */ public function get_debug_mode() { return [ 'value' => WP_DEBUG ? 'Active' : 'Inactive', ]; } }