mirror of
https://github.com/netzmacht/contao-leaflet-maps.git
synced 2025-11-29 19:43:50 +01:00
12 lines
334 B
PHP
12 lines
334 B
PHP
<?php
|
|
|
|
use Netzmacht\Contao\Leaflet\Controller\DataController;
|
|
|
|
define('TL_MODE', 'FE');
|
|
require(dirname(dirname(dirname($_SERVER['SCRIPT_FILENAME']))) . '/system/initialize.php');
|
|
|
|
$container = $GLOBALS['container'];
|
|
$controller = new DataController($container['leaflet.map.service'], $container['input']);
|
|
|
|
$controller->execute();
|