Server : nginx/1.24.0 System : Linux ip-172-31-33-48 6.14.0-1011-aws #11~24.04.1-Ubuntu SMP Fri Aug 1 02:07:25 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE Directory : /var/www/html/wp-content/plugins/elementor/core/admin/menu/ |
Upload File : |
<?php namespace Elementor\Core\Admin\Menu; use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item_With_Page; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Cloud Hosting Plans Menu Item. */ class Cloud_Hosting_Plans_Menu_Item implements Admin_Menu_Item_With_Page { const URL = 'https://go.elementor.com/host-local-side-menu/'; public function is_visible() { $env_type = wp_get_environment_type(); if ( in_array( $env_type, [ 'development', 'local', 'staging' ] ) ) { return true; } $ip = isset( $_SERVER['REMOTE_ADDR'] ) ? sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) ) : ''; $host = isset( $_SERVER['HTTP_HOST'] ) ? sanitize_text_field( wp_unslash( $_SERVER['HTTP_HOST'] ) ) : ''; $is_dev = ( false !== strpos( $host, '.local' ) || false !== strpos( $host, 'localhost' ) || preg_match( '/^192\.168\./', $ip ) || '127.0.0.1' === $ip ); return $is_dev; } public function get_parent_slug() { return 'edit.php?post_type=elementor_library'; } public function get_label() { return esc_html__( 'Hosting Plans', 'elementor' ); } public function get_capability() { return 'manage_options'; } public function get_page_title() { return esc_html__( 'Hosting Plans', 'elementor' ); } public function render() { exit; } public static function get_url() { return self::URL; } }