$theme_name, 'css' => [], 'js' => [], 'fonts' => [], 'require-jquery' => false, 'bootstrap-js' => false, 'favicon' => 'resources/img/favicon.png', 'templates' => $theme_folder . DS . 'templates', ]; $substitutions = ['' => $local_base, '' => $current_url, '' => $theme_url]; // Substitute some placeholders $theme['templates'] = strtr($theme['templates'], $substitutions); $theme['favicon'] = utf8_encode(strtr($theme['favicon'], $substitutions)); foreach ($theme['css'] as $key => $css) { $theme['css'][$key] = utf8_encode(strtr($css, $substitutions)); } foreach ($theme['fonts'] as $key => $font) { $theme['fonts'][$key] = utf8_encode(strtr($font, $substitutions)); } foreach ($theme['js'] as $key => $js) { $theme['js'][$key] = utf8_encode(strtr($js, $substitutions)); } return $theme; } public static function pathinfo($path) { preg_match('%^(.*?)[\\\\/]*(([^/\\\\]*?)(\.([^\.\\\\/]+?)|))[\\\\/\.]*$%im', $path, $m); if (isset($m[1])) { $ret['dir']=$m[1]; } if (isset($m[2])) { $ret['basename']=$m[2]; } if (isset($m[5])) { $ret['extension']=$m[5]; } if (isset($m[3])) { $ret['filename']=$m[3]; } return $ret; } }