carhop__plugins__PROD-DEV/plugins/carhop-blocks/blocks/localisation-map/src/localisation-map/render.php
Antoine M da65a622b4
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Introducing the map component
2025-10-02 14:22:58 +02:00

13 lines
288 B
PHP

<?php
/**
* Render template for Carhop Localisation Map block
*/
// Generate unique ID for this map instance
$unique_id = 'carhop-map-' . uniqid();
?>
<div class="carhop-localisation-map" id="<?php echo esc_attr($unique_id); ?>">
<div class="map-container"></div>
</div>