33 lines
671 B
PHP
33 lines
671 B
PHP
<?php
|
|
|
|
class Text
|
|
{
|
|
private static $texts;
|
|
|
|
public static function get($key, $data = null)
|
|
{
|
|
// if not $key
|
|
if (!$key) {
|
|
return null;
|
|
}
|
|
|
|
if ($data) {
|
|
foreach ($data as $var => $value) {
|
|
${$var} = $value;
|
|
}
|
|
}
|
|
|
|
// load config file (this is only done once per application lifecycle)
|
|
if (!self::$texts) {
|
|
self::$texts = require(__DIR__ . '/../config/texts.php');
|
|
}
|
|
|
|
// check if array key exists
|
|
if (!array_key_exists($key, self::$texts)) {
|
|
return null;
|
|
}
|
|
|
|
return self::$texts[$key];
|
|
}
|
|
}
|