first commit

This commit is contained in:
2023-09-04 21:59:34 +02:00
commit 650ef5b3e1
196 changed files with 24080 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace language;
class VLanguage {
public static function showLanguages()
{
$langs = \language\FLanguage::getLangs();
$current_lang = \System::getSessionVar( 'current_lang' );
$tpl = new \Savant3;
$tpl -> _langs = $langs;
$tpl -> _current_lang = $current_lang;
return $tpl -> fetch( 'other/languages' );
}
}
?>