0
1
Fork 0
hedera-web-mindshore/web/html.php

51 lines
1.2 KiB
PHP
Raw Normal View History

<?php
$lang = isset($_SESSION['lang']) ? $_SESSION['lang'] : 'en';
$version = $this->getVersion();
2018-05-23 10:14:20 +00:00
function getUrl($fileName) {
2018-04-21 13:13:05 +00:00
global $version;
2018-05-23 10:14:20 +00:00
if (file_exists($fileName))
$fileVersion = strftime('%G%m%d%H%M%S', filemtime($fileName));
else
$fileVersion = $version;
return "$fileName?$fileVersion";
}
2018-05-23 10:14:20 +00:00
function js($fileName) {
return '<script type="text/javascript" src="'. getUrl("$fileName.js") .'"></script>'."\n";
}
2018-05-23 10:14:20 +00:00
function css($fileName) {
return '<link rel="stylesheet" type="text/css" href="'. getUrl("$fileName.css") .'"/>'."\n";
}
2018-05-23 10:14:20 +00:00
function getWebpackAssets() {
$wpConfig = json_decode(file_get_contents('webpack.config.json'));
$buildDir = $wpConfig->buildDir;
2019-02-05 13:11:40 +00:00
$serverPath = '';
2019-02-05 13:11:40 +00:00
if (_DEV_MODE) {
$devServerPort = $wpConfig->devServerPort;
$host = $_SERVER['SERVER_NAME'];
2022-05-21 21:31:56 +00:00
$serverPath = "http://$host:$devServerPort";
}
2019-02-05 13:11:40 +00:00
$wpAssets = json_decode(file_get_contents("$buildDir/webpack-assets.json"));
$jsFiles = [];
2019-02-05 13:11:40 +00:00
foreach ($wpAssets as $name => $asset)
2022-05-21 21:31:56 +00:00
if (!empty($name)
&& $name != '_empty_'
&& $name != 'main'
&& property_exists($asset, 'js'))
2019-02-05 13:11:40 +00:00
$jsFiles[] = $serverPath . $asset->js;
2022-05-21 21:31:56 +00:00
$jsFiles[] = $serverPath . $wpAssets->{''}->js[0];
$jsFiles[] = $serverPath . $wpAssets->main->js;
return $jsFiles;
}