PATH:
home
/
lab2454c
/
argowells.com
/
wp-content
/
plugins
/
elementor
/
modules
/
variables
/
classes
<?php namespace Elementor\Modules\Variables\Classes; use Elementor\Modules\AtomicWidgets\PropTypes\Contracts\Transformable_Prop_Type; use InvalidArgumentException; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Variable_Types_Registry { private array $types = []; public function register( string $key, Transformable_Prop_Type $prop_type ): void { $this->types[ $key ] = $prop_type; } public function get( $key ) { return $this->types[ $key ] ?? null; } public function all(): array { return $this->types; } }
[-] variables.php
[edit]
[-] css-renderer.php
[edit]
[+]
..
[-] rest-api.php
[edit]
[-] style-transformers.php
[edit]
[-] size-style-schema.php
[edit]
[-] style-schema.php
[edit]
[-] variable-types-registry.php
[edit]
[-] fonts.php
[edit]