Files
2026-05-30 17:43:37 +03:00

9 lines
231 B
PHP

<?php
class ControllerStartupRegionReplacement extends Controller {
public function index() {
$this->load->model('localisation/zone');
$this->response->setReplacements($this->model_localisation_zone->getReplacements());
}
}