PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/telusvwg/public_html/da754d/index.php on line 8
$#$#$#

Dir : /home/telusvwg/alwatnitraders.com/wp-content/plugins/elementor-pro/modules/transitions/
Server: Linux premium279.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
IP: 66.29.132.192
Choose File :

Url:
Dir : /home/telusvwg/alwatnitraders.com/wp-content/plugins/elementor-pro/modules/transitions/module.php

<?php
namespace ElementorPro\Modules\Transitions;

use ElementorPro\Base\Module_Base;
use ElementorPro\License\API;

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

class Module extends Module_Base {

	public function get_name() {
		return 'transitions';
	}

	private function is_transitions_active() {
		return API::is_licence_has_feature( 'transitions' );
	}

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

		if ( $this->is_transitions_active() ) {
			add_filter(
				'elementor/atomic-widgets/styles/transitions/allowed-properties',
				[ $this, 'extend_allowed_properties' ]
			);
		}
	}

	public function extend_allowed_properties( array $core_properties ): array {
		$pro_properties = [
			'margin',
			'margin-block-end',
			'margin-inline-start',
			'margin-inline-end',
			'margin-block-start',
			'padding',
			'padding-block-end',
			'padding-inline-start',
			'padding-inline-end',
			'padding-block-start',
			'flex',
			'flex-grow',
			'flex-shrink',
			'flex-basis',
			'width',
			'height',
			'max-height',
			'max-width',
			'min-height',
			'min-width',
			'top',
			'left',
			'bottom',
			'right',
			'z-index',
			'color',
			'font-size',
			'line-height',
			'letter-spacing',
			'word-spacing',
			'font-variation-settings',
			'-webkit-text-stroke-color',
			'background-color',
			'background-position',
			'box-shadow',
			'border',
			'border-radius',
			'border-color',
			'border-width',
			'opacity',
			'transform',
			'filter',
		];

		return array_merge( $core_properties, $pro_properties );
	}
}