engelsystem/includes/model/Sprache_model.php

24 lines
464 B
PHP
Raw Normal View History

<?php
/**
* Load a string by key.
2013-10-13 00:52:44 +02:00
*
* @param string $textid
* @param string $sprache
*/
function Sprache($textid, $sprache) {
2013-10-13 00:52:44 +02:00
$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;
2013-10-13 00:52:44 +02:00
if (count($sprache_source) == 1)
return $sprache_source[0];
return null;
}
?>