* @link https://www.fireplugins.com * @copyright Copyright © 2024 FirePlugins All Rights Reserved * @license GNU GPLv3 or later */ namespace FireBox\Core\Helpers; if (!defined('ABSPATH')) { exit; // Exit if accessed directly. } class Blocks { public static function render($name, $payload = []) { return firebox()->renderer->public->render('blocks/' . $name, $payload, true); } }