summaryrefslogtreecommitdiffstats
path: root/dictionary.php
diff options
context:
space:
mode:
authorraul2014-06-30 16:48:40 +0200
committerraul2014-06-30 16:48:40 +0200
commit64558106102ba145acda061a582ed3720823d8cc (patch)
tree1a0a0ceb14105725d260506dc0425964dae20d72 /dictionary.php
parentrevert changes (diff)
downloadslx-admin-64558106102ba145acda061a582ed3720823d8cc.tar.gz
slx-admin-64558106102ba145acda061a582ed3720823d8cc.tar.xz
slx-admin-64558106102ba145acda061a582ed3720823d8cc.zip
[i18n]creation of the lang folder
Diffstat (limited to 'dictionary.php')
-rw-r--r--dictionary.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/dictionary.php b/dictionary.php
deleted file mode 100644
index 00834a49..00000000
--- a/dictionary.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-class Dictionary{
- private static $dictionary;
- private static $langArray;
-
- function build(){
- self::$dictionary = json_decode(file_get_contents("dictionary.json"),true);
- foreach(self::$dictionary as $key => $text){
- self::$langArray[$key] = $text[LANG];
- }
- }
-
- public static function getArray(){
- return self::$langArray;
- }
-
-}