Deprecated: Creation of dynamic property acf_field_oembed::$width is deprecated in /home/honaret4/public_html/wp-content/plugins/studiare-core/libs/sunticket/classes/acf/includes/fields/class-acf-field-oembed.php on line 31

Deprecated: Creation of dynamic property acf_field_oembed::$height is deprecated in /home/honaret4/public_html/wp-content/plugins/studiare-core/libs/sunticket/classes/acf/includes/fields/class-acf-field-oembed.php on line 32

Deprecated: Creation of dynamic property acf_field_google_map::$default_values is deprecated in /home/honaret4/public_html/wp-content/plugins/studiare-core/libs/sunticket/classes/acf/includes/fields/class-acf-field-google-map.php on line 33

Deprecated: Creation of dynamic property acf_field__group::$have_rows is deprecated in /home/honaret4/public_html/wp-content/plugins/studiare-core/libs/sunticket/classes/acf/includes/fields/class-acf-field-group.php on line 31

Deprecated: Creation of dynamic property acf_field_clone::$cloning is deprecated in /home/honaret4/public_html/wp-content/plugins/studiare-core/libs/sunticket/classes/acf/pro/fields/class-acf-field-clone.php on line 34

Deprecated: Creation of dynamic property acf_field_clone::$have_rows is deprecated in /home/honaret4/public_html/wp-content/plugins/studiare-core/libs/sunticket/classes/acf/pro/fields/class-acf-field-clone.php on line 35
ELEMENTOR_VERSION, // Which language to return. 'site_lang' => get_bloginfo( 'language' ), ]; $site_key = self::get_site_key(); if ( ! empty( $site_key ) ) { $body_request['site_key'] = $site_key; } if ( ! empty( $additinal_status ) ) { $body_request['status'] = $additinal_status; $timeout = 3; } $response = wp_remote_get( self::$api_info_url, [ 'timeout' => $timeout, 'body' => $body_request, ] ); if ( is_wp_error( $response ) || 200 !== (int) wp_remote_retrieve_response_code( $response ) ) { set_transient( $cache_key, [], 2 * HOUR_IN_SECONDS ); return false; } $info_data = json_decode( wp_remote_retrieve_body( $response ), true ); if ( empty( $info_data ) || ! is_array( $info_data ) ) { set_transient( $cache_key, [], 2 * HOUR_IN_SECONDS ); return false; } if ( isset( $info_data['library'] ) ) { update_option( self::LIBRARY_OPTION_KEY, $info_data['library'], 'no' ); unset( $info_data['library'] ); } if ( isset( $info_data['feed'] ) ) { update_option( self::FEED_OPTION_KEY, $info_data['feed'], 'no' ); unset( $info_data['feed'] ); } set_transient( $cache_key, $info_data, 12 * HOUR_IN_SECONDS ); } return $info_data; } public static function get_site_key() { if ( null === Plugin::$instance->common ) { return get_option( Library::OPTION_CONNECT_SITE_KEY ); } /** @var Library $library */ $library = Plugin::$instance->common->get_component( 'connect' )->get_app( 'library' ); if ( ! $library || ! method_exists( $library, 'get_site_key' ) ) { return false; } return $library->get_site_key(); } /** * Get upgrade notice. * * Retrieve the upgrade notice if one exists, or false otherwise. * * @since 1.0.0 * @access public * @static * * @return array|false Upgrade notice, or false none exist. */ public static function get_upgrade_notice() { $data = self::get_info_data(); if ( empty( $data['upgrade_notice'] ) ) { return false; } return $data['upgrade_notice']; } public static function get_admin_notice() { $data = self::get_info_data(); if ( empty( $data['admin_notice'] ) ) { return false; } return $data['admin_notice']; } public static function get_canary_deployment_info( $force = false ) { $data = self::get_info_data( $force ); if ( empty( $data['canary_deployment'] ) ) { return false; } return $data['canary_deployment']; } public static function get_promotion_widgets() { $data = self::get_info_data(); if ( ! isset( $data['pro_widgets'] ) ) { $data['pro_widgets'] = []; } return $data['pro_widgets']; } /** * Get templates data. * * Retrieve the templates data from a remote server. * * @since 2.0.0 * @access public * @static * * @param bool $force_update Optional. Whether to force the data update or * not. Default is false. * * @return array The templates data. */ public static function get_library_data( $force_update = false ) { self::get_info_data( $force_update ); $library_data = get_option( self::LIBRARY_OPTION_KEY ); if ( empty( $library_data ) ) { return []; } return $library_data; } /** * Get feed data. * * Retrieve the feed info data from remote elementor server. * * @since 1.9.0 * @access public * @static * * @param bool $force_update Optional. Whether to force the data update or * not. Default is false. * * @return array Feed data. */ public static function get_feed_data( $force_update = false ) { self::get_info_data( $force_update ); $feed = get_option( self::FEED_OPTION_KEY ); if ( empty( $feed ) ) { return []; } return $feed; } public static function get_deactivation_data() { $data = self::get_info_data( true, 'deactivated' ); if ( empty( $data['deactivate_data'] ) ) { return false; } return $data['deactivate_data']; } public static function get_uninstalled_data() { $data = self::get_info_data( true, 'uninstalled' ); if ( empty( $data['uninstall_data'] ) ) { return false; } return $data['uninstall_data']; } /** * Get template content. * * Retrieve the templates content received from a remote server. * * @since 1.0.0 * @access public * @static * * @param int $template_id The template ID. * * @return object|\WP_Error The template content. */ public static function get_template_content( $template_id ) { /** @var Library $library */ $library = Plugin::$instance->common->get_component( 'connect' )->get_app( 'library' ); return $library->get_template_content( $template_id ); } /** * Send Feedback. * * Fires a request to Elementor server with the feedback data. * * @since 1.0.0 * @access public * @static * * @param string $feedback_key
Fatal error: Uncaught Error: Class "Elementor\Api" not found in /home/honaret4/public_html/wp-content/plugins/elementor/includes/plugin.php:757 Stack trace: #0 /home/honaret4/public_html/wp-content/plugins/elementor/includes/plugin.php(660): Elementor\Plugin->init_components() #1 /home/honaret4/public_html/wp-includes/class-wp-hook.php(324): Elementor\Plugin->init() #2 /home/honaret4/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #3 /home/honaret4/public_html/wp-includes/plugin.php(517): WP_Hook->do_action() #4 /home/honaret4/public_html/wp-settings.php(728): do_action() #5 /home/honaret4/public_html/wp-config.php(103): require_once('/home/honaret4/...') #6 /home/honaret4/public_html/wp-load.php(50): require_once('/home/honaret4/...') #7 /home/honaret4/public_html/wp-blog-header.php(13): require_once('/home/honaret4/...') #8 /home/honaret4/public_html/index.php(17): require('/home/honaret4/...') #9 {main} thrown in /home/honaret4/public_html/wp-content/plugins/elementor/includes/plugin.php on line 757