HEX
Server: LiteSpeed
System: Linux mail.aatilis.ir 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: www (1000)
PHP: 8.3.30
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/soqatland.com/wp-content/plugins/elementor-pro/modules/announcements/module.php
<?php
namespace ElementorPro\Modules\Announcements;

use Elementor\Core\Base\App as BaseApp;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Module extends BaseApp {

	/**
	 * @return bool
	 */
	public static function is_active(): bool {
		return is_admin();
	}

	/**
	 * @return string
	 */
	public function get_name(): string {
		return 'announcements';
	}

	public function __construct() {
		parent::__construct();

		add_filter( 'elementor/announcements/raw_announcements', function ( $raw_announcements ) {
			$raw_announcement = [
				'title'       => esc_html__( 'Keep Your Website’s Shine On', 'elementor-pro' ),
				'description' => sprintf(
					'<p>%s</p><ul><li>%s</li><li>%s</li><li>%s</li><li>%s</li></ul>',
					esc_html__( 'Your Elementor Pro subscription has expired. Renew it now to regain access to the Pro features that elevate your website.', 'elementor-pro' ),
					esc_html__( 'Manage and edit every part of your website, including pages, templates, headers, footers, and more.', 'elementor-pro' ),
					esc_html__( 'Increase engagement and conversion with Elementor’s marketing features including Forms, and Popups.', 'elementor-pro' ),
					esc_html__( 'Update your website’s content and design using Elementor Pro’s professional widgets and features for any need.', 'elementor-pro' ),
					esc_html__( 'Keep your website secure and compatible by updating your Elementor Pro website to the latest version.', 'elementor-pro' )
				),
				'media'       => [
					'type' => 'image',
					'src'  => ELEMENTOR_PRO_ASSETS_URL . 'images/announcements/license-expired.png?' . ELEMENTOR_PRO_VERSION,
				],
				'cta' => [
					[
						'label'   => esc_html__( 'Renew Now', 'elementor-pro' ),
						'variant' => 'primary',
						'target'  => '_blank',
						'url'     => 'https://go.elementor.com/renew-license-editor-expired-modal/',
					],
					[
						'label' => esc_html__( 'Learn More', 'elementor-pro' ),
						'target' => '_blank',
						'url' => 'https://go.elementor.com//learn-more-editor-expired-modal/',
					],
				],
				'triggers'    => [
					[
						'action' => 'isLicenseExpired',
					],
				],
			];

			array_unshift( $raw_announcements, $raw_announcement );

			return $raw_announcements;
		}, 400 );

		add_filter( 'elementor/announcements/trigger_object', function( $object_trigger, $trigger ) {
			if ( ! empty( $trigger['action'] ) && 'isLicenseExpired' === $trigger['action'] ) {
				$object_trigger = new Triggers\IsLicenseExpired();
			}

			return $object_trigger;
		}, 400, 2 );
	}
}