add hideFunctionalityFile
parent
4a8bd8aa90
commit
6cf4f4187e
|
@ -12,6 +12,7 @@ $Base64Env = [
|
||||||
//'disktag',
|
//'disktag',
|
||||||
//'downloadencrypt',
|
//'downloadencrypt',
|
||||||
//'function_name', // used in heroku.
|
//'function_name', // used in heroku.
|
||||||
|
//'hideFunctionalityFile',
|
||||||
//'language',
|
//'language',
|
||||||
//'passfile',
|
//'passfile',
|
||||||
'sitename',
|
'sitename',
|
||||||
|
@ -36,6 +37,7 @@ $CommonEnv = [
|
||||||
'background',
|
'background',
|
||||||
'disktag',
|
'disktag',
|
||||||
'function_name', // used in heroku.
|
'function_name', // used in heroku.
|
||||||
|
'hideFunctionalityFile',
|
||||||
'language',
|
'language',
|
||||||
'passfile',
|
'passfile',
|
||||||
'sitename',
|
'sitename',
|
||||||
|
@ -52,6 +54,7 @@ $ShowedCommonEnv = [
|
||||||
'background',
|
'background',
|
||||||
//'disktag',
|
//'disktag',
|
||||||
//'function_name', // used in heroku.
|
//'function_name', // used in heroku.
|
||||||
|
'hideFunctionalityFile',
|
||||||
'language',
|
'language',
|
||||||
'passfile',
|
'passfile',
|
||||||
'sitename',
|
'sitename',
|
||||||
|
@ -84,6 +87,20 @@ $ShowedInnerEnv = [
|
||||||
//'token_expires',
|
//'token_expires',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
function isHideFile($name)
|
||||||
|
{
|
||||||
|
$FunctionalityFile = [
|
||||||
|
'head.md',
|
||||||
|
'readme.md',
|
||||||
|
'favicon.ico',
|
||||||
|
];
|
||||||
|
|
||||||
|
if ($name == getConfig('passfile')) return true;
|
||||||
|
if (substr($name,0,1) == '.') return true;
|
||||||
|
if (getConfig('hideFunctionalityFile')) if (in_array(strtolower($name), $FunctionalityFile)) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
function getcache($str)
|
function getcache($str)
|
||||||
{
|
{
|
||||||
//$cache = null;
|
//$cache = null;
|
||||||
|
|
Loading…
Reference in New Issue