Initial Commit

This commit is contained in:
2020-02-09 23:02:19 +01:00
commit 62f67967ba
61 changed files with 25369 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
require_once './LanguageModule.php';
abstract class CLanguageModuleGeneral {
public static function getEntries($langCode) {
switch($langCode) {
case "de_DE":
$this->entries[""] = "";
break;
}
}
}
?>

View File

@@ -0,0 +1,9 @@
<?php
abstract class CLanguageModule {
public abstract static function getEntries($langCode);
}
?>