virt2/api/soft/sxd/lang/update.php

23 lines
602 B
PHP
Executable File

<?php
declare(strict_types = 1);
// Sypex Dumper 2 langfile updater
$path = './';
$langlist = [];
if (false !== ($handle = opendir($path))) {
while (false !== ($file = readdir($handle))) {
if (preg_match("/^lng_([a-z]{2}(-[a-z]{2})?)\.php$/", $file, $m)) {
include($path . $file);
$langlist[ $m[1] ] = $LNG['name'];
}
}
closedir($handle);
if (count($langlist) > 0) {
$fp = fopen('list.php', 'w');
fwrite($fp, "<?php\n\$langs = " . var_export($langlist, 1) . ";\n?>");
}
}
echo 'Langlist updated';