2015-08-02 04:47:45 +02:00
|
|
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// Variables
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// Functions
|
|
|
|
// ============================================================================
|
|
|
|
|
2016-01-16 15:01:29 +01:00
|
|
|
function buildThemes()
|
|
|
|
{
|
|
|
|
global $Site;
|
|
|
|
|
|
|
|
$themes = array();
|
|
|
|
$themesPaths = Filesystem::listDirectories(PATH_THEMES);
|
|
|
|
|
|
|
|
foreach($themesPaths as $themePath)
|
|
|
|
{
|
|
|
|
// Check if the theme is translated.
|
2017-10-02 22:42:18 +02:00
|
|
|
$languageFilename = $themePath.DS.'languages'.DS.$Site->language().'.json';
|
2016-01-16 15:01:29 +01:00
|
|
|
if( !Sanitize::pathFile($languageFilename) ) {
|
2017-09-10 14:56:23 +02:00
|
|
|
$languageFilename = $themePath.DS.'languages'.DS.DEFAULT_LANGUAGE_FILE;
|
2016-01-16 15:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if( Sanitize::pathFile($languageFilename) )
|
|
|
|
{
|
|
|
|
$database = file_get_contents($languageFilename);
|
|
|
|
$database = json_decode($database, true);
|
2016-01-19 03:34:33 +01:00
|
|
|
if(empty($database)) {
|
2016-06-21 03:06:52 +02:00
|
|
|
Log::set('99.themes.php'.LOG_SEP.'Language file error on theme '.$themePath);
|
2016-01-19 03:34:33 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-01-16 15:01:29 +01:00
|
|
|
$database = $database['theme-data'];
|
|
|
|
|
|
|
|
$database['dirname'] = basename($themePath);
|
2015-08-02 04:47:45 +02:00
|
|
|
|
2016-01-16 15:01:29 +01:00
|
|
|
// --- Metadata ---
|
|
|
|
$filenameMetadata = $themePath.DS.'metadata.json';
|
2015-08-02 04:47:45 +02:00
|
|
|
|
2016-01-16 15:01:29 +01:00
|
|
|
if( Sanitize::pathFile($filenameMetadata) )
|
|
|
|
{
|
|
|
|
$metadataString = file_get_contents($filenameMetadata);
|
|
|
|
$metadata = json_decode($metadataString, true);
|
|
|
|
|
2016-08-10 01:46:56 +02:00
|
|
|
$database['compatible'] = false;
|
|
|
|
if( !empty($metadata['compatible']) ) {
|
2017-05-30 19:18:18 +02:00
|
|
|
$bluditRoot = explode('.', BLUDIT_VERSION);
|
|
|
|
$compatible = explode(',', $metadata['compatible']);
|
|
|
|
foreach( $compatible as $version ) {
|
|
|
|
$root = explode('.', $version);
|
|
|
|
if( $root[0]==$bluditRoot[0] && $root[1]==$bluditRoot[1] ) {
|
|
|
|
$database['compatible'] = true;
|
|
|
|
}
|
2016-06-21 03:06:52 +02:00
|
|
|
}
|
|
|
|
}
|
2016-01-16 15:01:29 +01:00
|
|
|
|
2016-08-10 01:46:56 +02:00
|
|
|
$database = $database + $metadata;
|
|
|
|
array_push($themes, $database);
|
2016-01-16 15:01:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $themes;
|
2015-11-29 00:21:04 +01:00
|
|
|
}
|
|
|
|
|
2016-01-16 15:01:29 +01:00
|
|
|
// ============================================================================
|
|
|
|
// Main
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// Load the language file
|
2017-10-15 18:06:56 +02:00
|
|
|
$languageFilename = THEME_DIR.'languages'.DS.$Site->language().'.json';
|
2016-01-16 15:01:29 +01:00
|
|
|
if( !Sanitize::pathFile($languageFilename) ) {
|
2017-09-10 14:56:23 +02:00
|
|
|
$languageFilename = THEME_DIR.'languages'.DS.DEFAULT_LANGUAGE_FILE;
|
2015-08-02 04:47:45 +02:00
|
|
|
}
|
|
|
|
|
2016-01-16 15:01:29 +01:00
|
|
|
if( Sanitize::pathFile($languageFilename) )
|
2015-08-02 04:47:45 +02:00
|
|
|
{
|
2016-01-16 15:01:29 +01:00
|
|
|
$database = file_get_contents($languageFilename);
|
|
|
|
$database = json_decode($database, true);
|
2015-08-02 04:47:45 +02:00
|
|
|
|
2016-01-16 15:01:29 +01:00
|
|
|
// Remote the name and description.
|
|
|
|
unset($database['theme-data']);
|
2015-08-02 04:47:45 +02:00
|
|
|
|
2016-01-16 15:01:29 +01:00
|
|
|
// Load words from the theme language
|
|
|
|
if(!empty($database)) {
|
|
|
|
$Language->add($database);
|
|
|
|
}
|
2016-06-20 02:45:09 +02:00
|
|
|
}
|