# elementor/4.2.4/modules/variables/storage/constants.php

Elementor Website Builder – more than just a page builder, version 4.2.4. 15 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.2.4/code/modules/variables/storage/constants.php
- Raw: https://pluginprobe.com/plugins/elementor/4.2.4/raw/modules/variables/storage/constants.php
- Modified: 2026-03-30T09:49:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/4.2.4/code/modules/variables/storage/constants.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\Variables\Storage;

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

class Constants {
	public const FORMAT_VERSION_V1 = 1;
	public const FORMAT_VERSION_V2 = 2;
	public const TOTAL_VARIABLES_COUNT = 1000;
	public const VARIABLES_META_KEY = '_elementor_global_variables';
}

```
