Files
Roman Pyrih 64c4a90405 first commit
2026-03-10 09:50:10 +01:00

23 lines
518 B
PHP

<?php
namespace Elementor\Modules\Variables\Classes;
use Elementor\Modules\Variables\Services\Variables_Service;
use Elementor\Modules\Variables\Storage\Repository as Variables_Repository;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Variables {
private static $lookup = [];
public static function init( Variables_Service $service ) {
self::$lookup = $service->get_variables_list();
}
public static function by_id( string $id ) {
return self::$lookup[ $id ] ?? null;
}
}