add platform FG
parent
d5e9ee6103
commit
e0fc287a45
193
common.php
193
common.php
|
@ -7,6 +7,9 @@ $Base64Env = [
|
||||||
//'SecretKey', // used in SCF.
|
//'SecretKey', // used in SCF.
|
||||||
//'AccessKeyID', // used in FC.
|
//'AccessKeyID', // used in FC.
|
||||||
//'AccessKeySecret', // used in FC.
|
//'AccessKeySecret', // used in FC.
|
||||||
|
//'HW_urn', // used in FG.
|
||||||
|
//'HW_key', // used in FG.
|
||||||
|
//'HW_secret', // used in FG.
|
||||||
//'admin',
|
//'admin',
|
||||||
//'adminloginpage',
|
//'adminloginpage',
|
||||||
'background',
|
'background',
|
||||||
|
@ -49,6 +52,9 @@ $CommonEnv = [
|
||||||
'SecretKey', // used in SCF.
|
'SecretKey', // used in SCF.
|
||||||
'AccessKeyID', // used in FC.
|
'AccessKeyID', // used in FC.
|
||||||
'AccessKeySecret', // used in FC.
|
'AccessKeySecret', // used in FC.
|
||||||
|
'HW_urn', // used in FG.
|
||||||
|
'HW_key', // used in FG.
|
||||||
|
'HW_secret', // used in FG.
|
||||||
'admin',
|
'admin',
|
||||||
'adminloginpage',
|
'adminloginpage',
|
||||||
'background',
|
'background',
|
||||||
|
@ -73,6 +79,9 @@ $ShowedCommonEnv = [
|
||||||
//'SecretKey', // used in SCF.
|
//'SecretKey', // used in SCF.
|
||||||
//'AccessKeyID', // used in FC.
|
//'AccessKeyID', // used in FC.
|
||||||
//'AccessKeySecret', // used in FC.
|
//'AccessKeySecret', // used in FC.
|
||||||
|
//'HW_urn', // used in FG.
|
||||||
|
//'HW_key', // used in FG.
|
||||||
|
//'HW_secret', // used in FG.
|
||||||
//'admin',
|
//'admin',
|
||||||
'adminloginpage',
|
'adminloginpage',
|
||||||
'background',
|
'background',
|
||||||
|
@ -448,20 +457,29 @@ function get_access_token($refresh_token)
|
||||||
error_log('failed to get share access_token. response' . json_encode($ret));
|
error_log('failed to get share access_token. response' . json_encode($ret));
|
||||||
throw new Exception($response['stat'].', failed to get share access_token.'.$response['body']);
|
throw new Exception($response['stat'].', failed to get share access_token.'.$response['body']);
|
||||||
}
|
}
|
||||||
error_log('['.$_SERVER['disktag'].'] Get access token:'.json_encode($ret, JSON_PRETTY_PRINT));
|
$tmp = $ret;
|
||||||
|
$tmp['access_token'] = '******';
|
||||||
|
error_log('['.$_SERVER['disktag'].'] Get access token:'.json_encode($tmp, JSON_PRETTY_PRINT));
|
||||||
savecache('access_token', $_SERVER['access_token']);
|
savecache('access_token', $_SERVER['access_token']);
|
||||||
$tmp = [];
|
$tmp1 = [];
|
||||||
$tmp['shareapiurl'] = $_SERVER['api_url'];
|
$tmp1['shareapiurl'] = $_SERVER['api_url'];
|
||||||
if (getConfig('shareapiurl')=='') setConfig($tmp);
|
if (getConfig('shareapiurl')=='') setConfig($tmp1);
|
||||||
} else {
|
} else {
|
||||||
$response = curl_request( $_SERVER['oauth_url'] . 'token', 'client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . $refresh_token );
|
$p=0;
|
||||||
|
while ($response['stat']==0&&$p<3) {
|
||||||
|
$response = curl_request( $_SERVER['oauth_url'] . 'token', 'client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . $refresh_token );
|
||||||
|
$p++;
|
||||||
|
}
|
||||||
if ($response['stat']==200) $ret = json_decode($response['body'], true);
|
if ($response['stat']==200) $ret = json_decode($response['body'], true);
|
||||||
if (!isset($ret['access_token'])) {
|
if (!isset($ret['access_token'])) {
|
||||||
error_log($_SERVER['oauth_url'] . 'token'.'?client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . $refresh_token);
|
error_log($_SERVER['oauth_url'] . 'token'.'?client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . substr($refresh_token, 0, 20) . '******' . substr($refresh_token, -20));
|
||||||
error_log('failed to get ['.$_SERVER['disktag'].'] access_token. response' . json_encode($ret));
|
error_log('failed to get ['.$_SERVER['disktag'].'] access_token. response' . json_encode($ret));
|
||||||
throw new Exception($response['stat'].', failed to get ['.$_SERVER['disktag'].'] access_token.'.$response['body']);
|
throw new Exception($response['stat'].', failed to get ['.$_SERVER['disktag'].'] access_token.'.$response['body']);
|
||||||
}
|
}
|
||||||
error_log('['.$_SERVER['disktag'].'] Get access token:'.json_encode($ret, JSON_PRETTY_PRINT));
|
$tmp = $ret;
|
||||||
|
$tmp['access_token'] = '******';
|
||||||
|
$tmp['refresh_token'] = '******';
|
||||||
|
error_log('['.$_SERVER['disktag'].'] Get access token:'.json_encode($tmp, JSON_PRETTY_PRINT));
|
||||||
$_SERVER['access_token'] = $ret['access_token'];
|
$_SERVER['access_token'] = $ret['access_token'];
|
||||||
savecache('access_token', $_SERVER['access_token'], $ret['expires_in'] - 300);
|
savecache('access_token', $_SERVER['access_token'], $ret['expires_in'] - 300);
|
||||||
if (time()>getConfig('token_expires')) setConfig([ 'refresh_token' => $ret['refresh_token'], 'token_expires' => time()+7*24*60*60 ]);
|
if (time()>getConfig('token_expires')) setConfig([ 'refresh_token' => $ret['refresh_token'], 'token_expires' => time()+7*24*60*60 ]);
|
||||||
|
@ -1578,7 +1596,10 @@ function get_refresh_token()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
document.cookie=\'disktag=\'+t.disktag_add.value+\'; path=/\';
|
var expd = new Date();
|
||||||
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
|
var expires = "expires="+expd.toGMTString();
|
||||||
|
document.cookie=\'disktag=\'+t.disktag_add.value+\'; path=/; \'+expires;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
</script>';
|
</script>';
|
||||||
|
@ -1669,7 +1690,7 @@ function EnvOpt($needUpdate = 0)
|
||||||
</td>
|
</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
} elseif ($key=='theme') {
|
} elseif ($key=='theme') {
|
||||||
$theme_arr = scandir('theme');
|
$theme_arr = scandir(__DIR__.'/theme');
|
||||||
$html .= '
|
$html .= '
|
||||||
<tr>
|
<tr>
|
||||||
<td><label>' . $key . '</label></td>
|
<td><label>' . $key . '</label></td>
|
||||||
|
@ -1714,8 +1735,8 @@ function EnvOpt($needUpdate = 0)
|
||||||
<form action="" method="post">
|
<form action="" method="post">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">'.$disktag.':
|
<td colspan="2">'.$disktag.':
|
||||||
<input type="hidden" name="disktag_del" value="'.$disktag.'">
|
<input type="hidden" name="disktag_del" value="'.$disktag.'">
|
||||||
<input type="submit" name="submit1" value="'.getconstStr('DelDisk').'">
|
<input type="submit" name="submit1" value="'.getconstStr('DelDisk').'">
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</form>';
|
</form>';
|
||||||
|
@ -1733,6 +1754,11 @@ function EnvOpt($needUpdate = 0)
|
||||||
$html .= '
|
$html .= '
|
||||||
<tr><td><input type="submit" name="submit1" value="'.getconstStr('Setup').'"></td></tr>
|
<tr><td><input type="submit" name="submit1" value="'.getconstStr('Setup').'"></td></tr>
|
||||||
</form>';
|
</form>';
|
||||||
|
} else {
|
||||||
|
$html .= '
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">Please add this disk again.</td>
|
||||||
|
</tr>';
|
||||||
}
|
}
|
||||||
$html .= '
|
$html .= '
|
||||||
</table><br>';
|
</table><br>';
|
||||||
|
@ -1748,6 +1774,8 @@ function EnvOpt($needUpdate = 0)
|
||||||
$canOneKeyUpate = 1;
|
$canOneKeyUpate = 1;
|
||||||
} elseif (isset($_SERVER['FC_SERVER_PATH'])&&$_SERVER['FC_SERVER_PATH']==='/var/fc/runtime/php7.2') {
|
} elseif (isset($_SERVER['FC_SERVER_PATH'])&&$_SERVER['FC_SERVER_PATH']==='/var/fc/runtime/php7.2') {
|
||||||
$canOneKeyUpate = 1;
|
$canOneKeyUpate = 1;
|
||||||
|
} elseif ($_SERVER['_APP_SHARE_DIR']==='/var/share/CFF/processrouter') {
|
||||||
|
$canOneKeyUpate = 1;
|
||||||
} else {
|
} else {
|
||||||
$tmp = time();
|
$tmp = time();
|
||||||
if ( mkdir(''.$tmp, 0777) ) {
|
if ( mkdir(''.$tmp, 0777) ) {
|
||||||
|
@ -1862,23 +1890,23 @@ function render_list($path = '', $files = '')
|
||||||
-->';
|
-->';
|
||||||
//$authinfo = $path . '<br><pre>' . json_encode($files, JSON_PRETTY_PRINT) . '</pre>';
|
//$authinfo = $path . '<br><pre>' . json_encode($files, JSON_PRETTY_PRINT) . '</pre>';
|
||||||
|
|
||||||
|
|
||||||
if (isset($_COOKIE['theme'])&&$_COOKIE['theme']!='') $theme = $_COOKIE['theme'];
|
if (isset($_COOKIE['theme'])&&$_COOKIE['theme']!='') $theme = $_COOKIE['theme'];
|
||||||
|
if ( !file_exists(__DIR__.'/theme/'.$theme) ) $theme = '';
|
||||||
if ( $theme=='' ) {
|
if ( $theme=='' ) {
|
||||||
$tmp = getConfig('customTheme');
|
$tmp = getConfig('customTheme');
|
||||||
if ( $tmp!='' ) $theme = $tmp;
|
if ( $tmp!='' ) $theme = $tmp;
|
||||||
}
|
}
|
||||||
if ( $theme=='' ) {
|
if ( $theme=='' ) {
|
||||||
$theme = getConfig('theme');
|
$theme = getConfig('theme');
|
||||||
if ( $theme=='' || !file_exists('theme/'.$theme) ) $theme = 'classic.html';
|
if ( $theme=='' || !file_exists(__DIR__.'/theme/'.$theme) ) $theme = 'classic.html';
|
||||||
}
|
}
|
||||||
if (substr($theme,-4)=='.php') {
|
if (substr($theme,-4)=='.php') {
|
||||||
@ob_start();
|
@ob_start();
|
||||||
include 'theme/'.$theme;
|
include 'theme/'.$theme;
|
||||||
$html = ob_get_clean();
|
$html = ob_get_clean();
|
||||||
} else {
|
} else {
|
||||||
if (file_exists('theme/'.$theme)) {
|
if (file_exists(__DIR__.'/theme/'.$theme)) {
|
||||||
$file_path = 'theme/'.$theme;
|
$file_path = __DIR__.'/theme/'.$theme;
|
||||||
$html = file_get_contents($file_path);
|
$html = file_get_contents($file_path);
|
||||||
} else {
|
} else {
|
||||||
if (!($html = getcache('customTheme'))) {
|
if (!($html = getcache('customTheme'))) {
|
||||||
|
@ -1893,9 +1921,6 @@ function render_list($path = '', $files = '')
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
//$fp = fopen($file_path,"r");
|
|
||||||
//$html = fread($fp,filesize($file_path));
|
|
||||||
//fclose($fp);
|
|
||||||
|
|
||||||
$tmp = splitfirst($html, '<!--IconValuesStart-->');
|
$tmp = splitfirst($html, '<!--IconValuesStart-->');
|
||||||
$html = $tmp[0];
|
$html = $tmp[0];
|
||||||
|
@ -2111,7 +2136,70 @@ function render_list($path = '', $files = '')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($files['children'])) {
|
if (isset($files['file'])) {
|
||||||
|
while (strpos($html, '<!--GuestUploadStart-->')) {
|
||||||
|
$tmp = splitfirst($html, '<!--GuestUploadStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--GuestUploadEnd-->');
|
||||||
|
$html .= $tmp[1];
|
||||||
|
}
|
||||||
|
$tmp = splitfirst($html, '<!--EncryptedStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--EncryptedEnd-->');
|
||||||
|
$html .= $tmp[1];
|
||||||
|
|
||||||
|
$tmp[1] = 'a';
|
||||||
|
while ($tmp[1]!='') {
|
||||||
|
$tmp = splitfirst($html, '<!--IsFolderStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--IsFolderEnd-->');
|
||||||
|
$html .= $tmp[1];
|
||||||
|
}
|
||||||
|
while (strpos($html, '<!--IsFileStart-->')) {
|
||||||
|
$html = str_replace('<!--IsFileStart-->', '', $html);
|
||||||
|
$html = str_replace('<!--IsFileEnd-->', '', $html);
|
||||||
|
}
|
||||||
|
$html = str_replace('<!--FileEncodeUrl-->', str_replace('%2523', '%23', str_replace('%26amp%3B','&',spurlencode(path_format($_SERVER['base_disk_path'] . '/' . $path), '/'))), $html);
|
||||||
|
$html = str_replace('<!--FileUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
||||||
|
|
||||||
|
$ext = strtolower(substr($path, strrpos($path, '.') + 1));
|
||||||
|
if (in_array($ext, $exts['img'])) $ext = 'img';
|
||||||
|
elseif (in_array($ext, $exts['video'])) $ext = 'video';
|
||||||
|
elseif (in_array($ext, $exts['music'])) $ext = 'music';
|
||||||
|
//elseif (in_array($ext, $exts['pdf'])) $ext = 'pdf';
|
||||||
|
elseif ($ext=='pdf') $ext = 'pdf';
|
||||||
|
elseif (in_array($ext, $exts['office'])) $ext = 'office';
|
||||||
|
elseif (in_array($ext, $exts['txt'])) $ext = 'txt';
|
||||||
|
else $ext = 'Other';
|
||||||
|
$previewext = ['img', 'video', 'music', 'pdf', 'office', 'txt', 'Other'];
|
||||||
|
$previewext = array_diff($previewext, [ $ext ]);
|
||||||
|
foreach ($previewext as $ext1) {
|
||||||
|
$tmp[1] = 'a';
|
||||||
|
while ($tmp[1]!='') {
|
||||||
|
$tmp = splitfirst($html, '<!--Is'.$ext1.'FileStart-->');
|
||||||
|
$html = $tmp[0];
|
||||||
|
$tmp = splitfirst($tmp[1], '<!--Is'.$ext1.'FileEnd-->');
|
||||||
|
$html .= $tmp[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while (strpos($html, '<!--Is'.$ext.'FileStart-->')) {
|
||||||
|
$html = str_replace('<!--Is'.$ext.'FileStart-->', '', $html);
|
||||||
|
$html = str_replace('<!--Is'.$ext.'FileEnd-->', '', $html);
|
||||||
|
}
|
||||||
|
//while (strpos($html, '<!--FileDownUrl-->')) $html = str_replace('<!--FileDownUrl-->', $files[$_SERVER['DownurlStrName']], $html);
|
||||||
|
while (strpos($html, '<!--FileDownUrl-->')) $html = str_replace('<!--FileDownUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
||||||
|
while (strpos($html, '<!--FileEncodeReplaceUrl-->')) $html = str_replace('<!--FileEncodeReplaceUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
||||||
|
while (strpos($html, '<!--FileName-->')) $html = str_replace('<!--FileName-->', $files['name'], $html);
|
||||||
|
$html = str_replace('<!--FileEncodeDownUrl-->', urlencode($files[$_SERVER['DownurlStrName']]), $html);
|
||||||
|
$html = str_replace('<!--constStr@ClicktoEdit-->', getconstStr('ClicktoEdit'), $html);
|
||||||
|
$html = str_replace('<!--constStr@CancelEdit-->', getconstStr('CancelEdit'), $html);
|
||||||
|
$html = str_replace('<!--constStr@Save-->', getconstStr('Save'), $html);
|
||||||
|
while (strpos($html, '<!--TxtContent-->')) $html = str_replace('<!--TxtContent-->', htmlspecialchars(curl_request($files[$_SERVER['DownurlStrName']])['body']), $html);
|
||||||
|
$html = str_replace('<!--constStr@FileNotSupport-->', getconstStr('FileNotSupport'), $html);
|
||||||
|
|
||||||
|
|
||||||
|
//$html = str_replace('<!--constStr@File-->', getconstStr('File'), $html);
|
||||||
|
} elseif (isset($files['children'])) {
|
||||||
while (strpos($html, '<!--GuestUploadStart-->')) {
|
while (strpos($html, '<!--GuestUploadStart-->')) {
|
||||||
$tmp = splitfirst($html, '<!--GuestUploadStart-->');
|
$tmp = splitfirst($html, '<!--GuestUploadStart-->');
|
||||||
$html = $tmp[0];
|
$html = $tmp[0];
|
||||||
|
@ -2262,69 +2350,6 @@ function render_list($path = '', $files = '')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} elseif (isset($files['file'])) {
|
|
||||||
while (strpos($html, '<!--GuestUploadStart-->')) {
|
|
||||||
$tmp = splitfirst($html, '<!--GuestUploadStart-->');
|
|
||||||
$html = $tmp[0];
|
|
||||||
$tmp = splitfirst($tmp[1], '<!--GuestUploadEnd-->');
|
|
||||||
$html .= $tmp[1];
|
|
||||||
}
|
|
||||||
$tmp = splitfirst($html, '<!--EncryptedStart-->');
|
|
||||||
$html = $tmp[0];
|
|
||||||
$tmp = splitfirst($tmp[1], '<!--EncryptedEnd-->');
|
|
||||||
$html .= $tmp[1];
|
|
||||||
|
|
||||||
$tmp[1] = 'a';
|
|
||||||
while ($tmp[1]!='') {
|
|
||||||
$tmp = splitfirst($html, '<!--IsFolderStart-->');
|
|
||||||
$html = $tmp[0];
|
|
||||||
$tmp = splitfirst($tmp[1], '<!--IsFolderEnd-->');
|
|
||||||
$html .= $tmp[1];
|
|
||||||
}
|
|
||||||
while (strpos($html, '<!--IsFileStart-->')) {
|
|
||||||
$html = str_replace('<!--IsFileStart-->', '', $html);
|
|
||||||
$html = str_replace('<!--IsFileEnd-->', '', $html);
|
|
||||||
}
|
|
||||||
$html = str_replace('<!--FileEncodeUrl-->', str_replace('%2523', '%23', str_replace('%26amp%3B','&',spurlencode(path_format($_SERVER['base_disk_path'] . '/' . $path), '/'))), $html);
|
|
||||||
$html = str_replace('<!--FileUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
|
||||||
|
|
||||||
$ext = strtolower(substr($path, strrpos($path, '.') + 1));
|
|
||||||
if (in_array($ext, $exts['img'])) $ext = 'img';
|
|
||||||
elseif (in_array($ext, $exts['video'])) $ext = 'video';
|
|
||||||
elseif (in_array($ext, $exts['music'])) $ext = 'music';
|
|
||||||
//elseif (in_array($ext, $exts['pdf'])) $ext = 'pdf';
|
|
||||||
elseif ($ext=='pdf') $ext = 'pdf';
|
|
||||||
elseif (in_array($ext, $exts['office'])) $ext = 'office';
|
|
||||||
elseif (in_array($ext, $exts['txt'])) $ext = 'txt';
|
|
||||||
else $ext = 'Other';
|
|
||||||
$previewext = ['img', 'video', 'music', 'pdf', 'office', 'txt', 'Other'];
|
|
||||||
$previewext = array_diff($previewext, [ $ext ]);
|
|
||||||
foreach ($previewext as $ext1) {
|
|
||||||
$tmp[1] = 'a';
|
|
||||||
while ($tmp[1]!='') {
|
|
||||||
$tmp = splitfirst($html, '<!--Is'.$ext1.'FileStart-->');
|
|
||||||
$html = $tmp[0];
|
|
||||||
$tmp = splitfirst($tmp[1], '<!--Is'.$ext1.'FileEnd-->');
|
|
||||||
$html .= $tmp[1];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
while (strpos($html, '<!--Is'.$ext.'FileStart-->')) {
|
|
||||||
$html = str_replace('<!--Is'.$ext.'FileStart-->', '', $html);
|
|
||||||
$html = str_replace('<!--Is'.$ext.'FileEnd-->', '', $html);
|
|
||||||
}
|
|
||||||
//while (strpos($html, '<!--FileDownUrl-->')) $html = str_replace('<!--FileDownUrl-->', $files[$_SERVER['DownurlStrName']], $html);
|
|
||||||
while (strpos($html, '<!--FileDownUrl-->')) $html = str_replace('<!--FileDownUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
|
||||||
while (strpos($html, '<!--FileEncodeReplaceUrl-->')) $html = str_replace('<!--FileEncodeReplaceUrl-->', path_format($_SERVER['base_disk_path'] . '/' . $path), $html);
|
|
||||||
while (strpos($html, '<!--FileName-->')) $html = str_replace('<!--FileName-->', $files['name'], $html);
|
|
||||||
$html = str_replace('<!--FileEncodeDownUrl-->', urlencode($files[$_SERVER['DownurlStrName']]), $html);
|
|
||||||
$html = str_replace('<!--constStr@ClicktoEdit-->', getconstStr('ClicktoEdit'), $html);
|
|
||||||
$html = str_replace('<!--constStr@CancelEdit-->', getconstStr('CancelEdit'), $html);
|
|
||||||
$html = str_replace('<!--constStr@Save-->', getconstStr('Save'), $html);
|
|
||||||
while (strpos($html, '<!--TxtContent-->')) $html = str_replace('<!--TxtContent-->', htmlspecialchars(curl_request($files[$_SERVER['DownurlStrName']])['body']), $html);
|
|
||||||
$html = str_replace('<!--constStr@FileNotSupport-->', getconstStr('FileNotSupport'), $html);
|
|
||||||
|
|
||||||
|
|
||||||
//$html = str_replace('<!--constStr@File-->', getconstStr('File'), $html);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$html = str_replace('<!--constStr@language-->', $constStr['language'], $html);
|
$html = str_replace('<!--constStr@language-->', $constStr['language'], $html);
|
||||||
|
@ -2654,14 +2679,14 @@ function render_list($path = '', $files = '')
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($_SERVER['admin']||!getConfig('disableChangeTheme')) {
|
if ($_SERVER['admin']||!getConfig('disableChangeTheme')) {
|
||||||
$theme_arr = scandir('theme');
|
$theme_arr = scandir(__DIR__.'/theme');
|
||||||
$html .= '
|
$html .= '
|
||||||
<div style="position: fixed;right: 10px;bottom: 10px;/*color: rgba(247,247,249,0);*/">
|
<div style="position: fixed;right: 10px;bottom: 10px;/*color: rgba(247,247,249,0);*/">
|
||||||
<select name="theme" onchange="changetheme(this.options[this.options.selectedIndex].value)">
|
<select name="theme" onchange="changetheme(this.options[this.options.selectedIndex].value)">
|
||||||
<option value="">'.getconstStr('Theme').'</option>';
|
<option value="">'.getconstStr('Theme').'</option>';
|
||||||
foreach ($theme_arr as $v1) {
|
foreach ($theme_arr as $v1) {
|
||||||
if ($v1!='.' && $v1!='..') $html .= '
|
if ($v1!='.' && $v1!='..') $html .= '
|
||||||
<option value="'.$v1.'" '.($v1==$theme?'selected="selected"':'').'>'.$v1.'</option>';
|
<option value="'.$v1.'"'.($v1==$theme?' selected="selected"':'').'>'.$v1.'</option>';
|
||||||
}
|
}
|
||||||
$html .= '
|
$html .= '
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Reference in New Issue