17 lines
507 B
PHP
17 lines
507 B
PHP
<?php
|
|
<?php
|
|
declare(strict_types=1);
|
|
|
|
// Header GANZ am Anfang, bevor IRGENDWAS ausgegeben wird
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
|
|
// Optional: Fehlerausgabe für dieses Tool
|
|
ini_set('display_errors', '1');
|
|
ini_set('display_startup_errors', '1');
|
|
error_reporting(E_ALL);
|
|
|
|
// Projektbasis ermitteln: /public/landingpages/tools -> / (Projektroot)
|
|
$baseDir = $_SERVER['DOCUMENT_ROOT'];
|
|
// Tool-Script einbinden und ausführen
|
|
//require_once $baseDir . '/../tools/i18n_collect_keys.php';
|
|
// eof
|