summaryrefslogtreecommitdiff
path: root/engine/SkinBase.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/SkinBase.php')
-rw-r--r--engine/SkinBase.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/engine/SkinBase.php b/engine/SkinBase.php
deleted file mode 100644
index b50c172..0000000
--- a/engine/SkinBase.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-class SkinBase implements LangAccess {
-
- protected static LangData $ld;
-
- public static function __constructStatic(): void {
- self::$ld = LangData::getInstance();
- }
-
- public function lang(...$args): string {
- return htmlescape($this->langRaw(...$args));
- }
-
- public function langRaw(string $key, ...$args) {
- $val = self::$ld[$key];
- return empty($args) ? $val : sprintf($val, ...$args);
- }
-
-}
-
-SkinBase::__constructStatic(); \ No newline at end of file