summaryrefslogtreecommitdiff
path: root/includes/model/Sprache_model.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/model/Sprache_model.php')
-rw-r--r--includes/model/Sprache_model.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/includes/model/Sprache_model.php b/includes/model/Sprache_model.php
new file mode 100644
index 00000000..55683411
--- /dev/null
+++ b/includes/model/Sprache_model.php
@@ -0,0 +1,18 @@
+<?php
+
+/**
+ * Load a string by key.
+ * @param string $textid
+ * @param string $sprache
+ */
+function Sprache($textid, $sprache) {
+ $sprache_source = sql_select("SELECT * FROM `Sprache` WHERE `TextID`='" . sql_escape($textid) . "' AND `Sprache`='" . sql_escape($sprache) . "' LIMIT 1");
+ if($sprache_source === false)
+ return false;
+ if(count($sprache_source) == 1)
+ return $sprache_source[0];
+ return null;
+}
+
+
+?> \ No newline at end of file