117 lines
2.6 KiB
PHP
117 lines
2.6 KiB
PHP
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
|
|
class dbLanguage extends dbJSON
|
|
{
|
|
public $data;
|
|
public $db;
|
|
public $currentLanguage;
|
|
|
|
function __construct($currentLanguage)
|
|
{
|
|
$this->data = array();
|
|
$this->db = array();
|
|
$this->currentLanguage = $currentLanguage;
|
|
|
|
// Load default language
|
|
$filename = PATH_LANGUAGES.DEFAULT_LANGUAGE_FILE;
|
|
if (Sanitize::pathFile($filename)) {
|
|
$Tmp = new dbJSON($filename, false);
|
|
$this->db = array_merge($this->db, $Tmp->db);
|
|
}
|
|
|
|
// If the user defined a new language replace the content of the default language
|
|
// If the new dictionary has missing keys this are going to take from the default language
|
|
$filename = PATH_LANGUAGES.$currentLanguage.'.json';
|
|
if (Sanitize::pathFile($filename) && (DEFAULT_LANGUAGE_FILE!==$currentLanguage.'.json')) {
|
|
$Tmp = new dbJSON($filename, false);
|
|
$this->db = array_merge($this->db, $Tmp->db);
|
|
}
|
|
|
|
// Language-data
|
|
$this->data = $this->db['language-data'];
|
|
unset($this->db['language-data']);
|
|
}
|
|
|
|
public function locale()
|
|
{
|
|
if (isset($this->data['locale'])) {
|
|
return $this->data['locale'];
|
|
}
|
|
|
|
return $this->currentLanguage;
|
|
}
|
|
|
|
public function currentLanguage()
|
|
{
|
|
return $this->currentLanguage;
|
|
}
|
|
|
|
// Return the translation, if the translation doesn't exist returns the English translation
|
|
public function get($string)
|
|
{
|
|
$key = Text::lowercase($string);
|
|
$key = Text::replace(' ', '-', $key);
|
|
|
|
//file_put_contents(DEBUG_FILE, $key.PHP_EOL, FILE_APPEND);
|
|
|
|
if (isset($this->db[$key])) {
|
|
return $this->db[$key];
|
|
}
|
|
|
|
//file_put_contents(DEBUG_FILE, $key.PHP_EOL, FILE_APPEND);
|
|
return $string;
|
|
}
|
|
|
|
// Returns translation
|
|
public function g($string)
|
|
{
|
|
return $this->get($string);
|
|
}
|
|
|
|
// Print translation
|
|
public function printMe($string)
|
|
{
|
|
echo $this->get($string);
|
|
}
|
|
|
|
// Print translation
|
|
public function p($string)
|
|
{
|
|
echo $this->get($string);
|
|
}
|
|
|
|
// Add keys=>values to the current dicionary
|
|
// This method overwrite the key=>value
|
|
public function add($array)
|
|
{
|
|
$this->db = array_merge($array, $this->db);
|
|
}
|
|
|
|
/*
|
|
// Returns the item from language-data
|
|
public function getData($key)
|
|
{
|
|
if (isset($this->data[$key])) {
|
|
return $this->data[$key];
|
|
}
|
|
|
|
return false;
|
|
}
|
|
*/
|
|
|
|
// Returns an array with all dictionaries
|
|
public function getLanguageList()
|
|
{
|
|
$files = Filesystem::listFiles(PATH_LANGUAGES, '*', 'json');
|
|
$tmp = array();
|
|
foreach($files as $file) {
|
|
$t = new dbJSON($file, false);
|
|
if (isset($t->db['language-data']['native'])) {
|
|
$native = $t->db['language-data']['native'];
|
|
$locale = basename($file, '.json');
|
|
$tmp[$locale] = $native;
|
|
}
|
|
}
|
|
return $tmp;
|
|
}
|
|
} |