Initial Commit
This commit is contained in:
17
core/Objects/lang/General.php
Normal file
17
core/Objects/lang/General.php
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
9
core/Objects/lang/LanguageModule.php
Normal file
9
core/Objects/lang/LanguageModule.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
abstract class CLanguageModule {
|
||||
|
||||
public abstract static function getEntries($langCode);
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user