mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 20:30:39 +02:00
Issue #223 - File Inspector should now be fully functional.
This commit is contained in:
@@ -139,35 +139,38 @@ class file_inspector {
|
|||||||
var $totalFiles = 0;
|
var $totalFiles = 0;
|
||||||
var $coredir = array();
|
var $coredir = array();
|
||||||
var $progress_units = 0;
|
var $progress_units = 0;
|
||||||
|
private $langs = array();
|
||||||
|
private $lang_short = array();
|
||||||
|
|
||||||
|
|
||||||
|
private $excludeFiles = array( '.', '..','/','.svn', 'CVS' ,'Thumbs.db', '.git');
|
||||||
|
|
||||||
// private $icon = array();
|
// private $icon = array();
|
||||||
private $iconTag = array();
|
private $iconTag = array();
|
||||||
|
|
||||||
function __construct()
|
function __construct()
|
||||||
{/*
|
{
|
||||||
$this->icon = array(
|
|
||||||
'folder_warning' => 'folder_warning.png',
|
$lng = e107::getLanguage();
|
||||||
'folder_fail' => 'folder_fail.png',
|
$langs = $lng->installed();
|
||||||
'folder_missing' => 'folder_missing.png',
|
|
||||||
'folder_old' => 'folder_old.png',
|
foreach($langs as $k=>$val)
|
||||||
'folder_old_dir' => 'folder_old_dir.png',
|
{
|
||||||
'folder_unknown' => 'folder_unknown.png',
|
if($val == "English") // Core release language, so ignore it.
|
||||||
'folder_check' => 'folder_check.png',
|
{
|
||||||
|
unset($langs[$k]);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$lang_short[] = $lng->convert($val);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->langs = $langs;
|
||||||
|
$this->lang_short = $lang_short;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
'file_old' => 'file_old.png',
|
|
||||||
'file_unknown' => 'file_unknown.png',
|
|
||||||
'file_warning' => 'file_warning.png',
|
|
||||||
'file_missing' => 'file_missing.png',
|
|
||||||
'file_check' => 'file_check.png',
|
|
||||||
'file_fail' => 'file_fail.png',
|
|
||||||
'file_core' => 'file_core.png',
|
|
||||||
'file_uncalc' => 'file_uncalc.png',
|
|
||||||
|
|
||||||
'warning' => 'warning.png',
|
|
||||||
'info' => 'info.png',
|
|
||||||
'fileinspector' => 'fileinspector.png',
|
|
||||||
'folder' => 'folder.png',
|
|
||||||
);*/
|
|
||||||
|
|
||||||
//TODO LAN
|
//TODO LAN
|
||||||
|
|
||||||
@@ -286,9 +289,13 @@ class file_inspector {
|
|||||||
|
|
||||||
function scan_config()
|
function scan_config()
|
||||||
{
|
{
|
||||||
global $rs, $pref;
|
|
||||||
$frm = e107::getForm();
|
$frm = e107::getForm();
|
||||||
$ns = e107::getRender();
|
$ns = e107::getRender();
|
||||||
|
$pref = e107::pref('core');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if($_GET['mode'] == 'run')
|
if($_GET['mode'] == 'run')
|
||||||
{
|
{
|
||||||
@@ -296,12 +303,18 @@ class file_inspector {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$text = "<div>
|
$tab = array();
|
||||||
<form action='".e_SELF."?mode=run' method='post' id='scanform'>
|
|
||||||
<table class='table table-striped adminform'>
|
$head = "<div>
|
||||||
|
<form action='".e_SELF."?mode=run' method='post' id='scanform'>";
|
||||||
|
|
||||||
|
$text = "
|
||||||
|
<table class='table adminform'>";
|
||||||
|
|
||||||
|
/* $text .= "
|
||||||
<tr>
|
<tr>
|
||||||
<td class='fcaption' colspan='2'>".FC_LAN_2."</td>
|
<td class='fcaption' colspan='2'>".FC_LAN_2."</td>
|
||||||
</tr>";
|
</tr>";*/
|
||||||
|
|
||||||
$coreOpts = array('full'=>FC_LAN_6, 'all'=>FC_LAN_4, 'none'=> FC_LAN_12);
|
$coreOpts = array('full'=>FC_LAN_6, 'all'=>FC_LAN_4, 'none'=> FC_LAN_12);
|
||||||
|
|
||||||
@@ -368,16 +381,19 @@ class file_inspector {
|
|||||||
<input type='radio' name='integrity' value='0'".($_POST['integrity'] == '0' ? " checked='checked'" : "")." /> ".FC_LAN_10."
|
<input type='radio' name='integrity' value='0'".($_POST['integrity'] == '0' ? " checked='checked'" : "")." /> ".FC_LAN_10."
|
||||||
</td></tr>";
|
</td></tr>";
|
||||||
|
|
||||||
|
$text .= "</table>";
|
||||||
|
|
||||||
|
$tab['basic'] = array('caption'=>FC_LAN_2, 'text'=>$text);
|
||||||
|
|
||||||
|
|
||||||
if ($pref['developer']) {
|
if ($pref['developer']) {
|
||||||
$text .= "<tr>
|
|
||||||
<td class='fcaption' colspan='2'>".FC_LAN_17."</td>
|
|
||||||
</tr>";
|
|
||||||
|
|
||||||
$text .= "<tr>
|
$text2 = "<table class='table adminlist'>";
|
||||||
|
/* $text2 .= "<tr>
|
||||||
|
<td class='fcaption' colspan='2'>".FC_LAN_17."</td>
|
||||||
|
</tr>";*/
|
||||||
|
|
||||||
|
$text2 .= "<tr>
|
||||||
<td style='width: 35%'>
|
<td style='width: 35%'>
|
||||||
".FC_LAN_18.":
|
".FC_LAN_18.":
|
||||||
</td>
|
</td>
|
||||||
@@ -386,7 +402,7 @@ class file_inspector {
|
|||||||
</td>
|
</td>
|
||||||
</tr>";
|
</tr>";
|
||||||
|
|
||||||
$text .= "<tr>
|
$text2 .= "<tr>
|
||||||
<td style='width: 35%'>
|
<td style='width: 35%'>
|
||||||
".FC_LAN_19.":
|
".FC_LAN_19.":
|
||||||
</td>
|
</td>
|
||||||
@@ -395,7 +411,7 @@ class file_inspector {
|
|||||||
</td>
|
</td>
|
||||||
</tr>";
|
</tr>";
|
||||||
|
|
||||||
$text .= "<tr>
|
$text2 .= "<tr>
|
||||||
<td style='width: 35%'>
|
<td style='width: 35%'>
|
||||||
".FC_LAN_20.":
|
".FC_LAN_20.":
|
||||||
</td>
|
</td>
|
||||||
@@ -403,16 +419,29 @@ class file_inspector {
|
|||||||
<input type='checkbox' name='line' value='1'".(($_POST['line'] || !isset($_POST['line'])) ? " checked='checked'" : "")." />
|
<input type='checkbox' name='line' value='1'".(($_POST['line'] || !isset($_POST['line'])) ? " checked='checked'" : "")." />
|
||||||
</td>
|
</td>
|
||||||
</tr>";
|
</tr>";
|
||||||
|
|
||||||
|
$text2 .= "
|
||||||
|
</table>";
|
||||||
|
|
||||||
|
$tab['advanced'] = array('caption'=>FC_LAN_17, 'text'=>$text2);
|
||||||
}
|
}
|
||||||
|
|
||||||
$text .= "
|
|
||||||
</table>
|
$tabText = e107::getForm()->tabs($tab);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$foot = "
|
||||||
<div class='buttons-bar center'>
|
<div class='buttons-bar center'>
|
||||||
".$frm->admin_button('scan', FC_LAN_11, 'other')."
|
".$frm->admin_button('scan', FC_LAN_11, 'other')."
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>";
|
</div>";
|
||||||
|
|
||||||
|
$text = $head.$tabText.$foot;
|
||||||
|
|
||||||
$ns -> tablerender(FC_LAN_1, $text);
|
$ns -> tablerender(FC_LAN_1, $text);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -496,22 +525,11 @@ class file_inspector {
|
|||||||
// &$parent_expand
|
// &$parent_expand
|
||||||
function inspect($list, $deprecated, $level, $dir, &$tree_end, &$parent_expand)
|
function inspect($list, $deprecated, $level, $dir, &$tree_end, &$parent_expand)
|
||||||
{
|
{
|
||||||
global $coredir,$lng;
|
global $coredir;
|
||||||
|
|
||||||
$sub_text = '';
|
$sub_text = '';
|
||||||
|
$langs = $this->langs;
|
||||||
$langs = explode(",",e_LANLIST);
|
$lang_short = $this->lang_short;
|
||||||
$lang_short = array();
|
|
||||||
|
|
||||||
foreach($langs as $k=>$val)
|
|
||||||
{
|
|
||||||
if($val == "English") // Core release language.
|
|
||||||
{
|
|
||||||
unset($langs[$k]);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$lang_short[] = $lng->convert($val);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
unset ($childOut);
|
unset ($childOut);
|
||||||
@@ -679,6 +697,9 @@ class file_inspector {
|
|||||||
|
|
||||||
if (!empty($_POST['noncore']) || !empty($_POST['oldcore']))
|
if (!empty($_POST['noncore']) || !empty($_POST['oldcore']))
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if(!$handle = opendir($dir.'/'))
|
if(!$handle = opendir($dir.'/'))
|
||||||
{
|
{
|
||||||
//e107::getMessage()->addInfo("Couldn't Open : ".$dir);
|
//e107::getMessage()->addInfo("Couldn't Open : ".$dir);
|
||||||
@@ -686,11 +707,12 @@ class file_inspector {
|
|||||||
|
|
||||||
while (is_resource($handle) && false !== ($readdir = readdir($handle)))
|
while (is_resource($handle) && false !== ($readdir = readdir($handle)))
|
||||||
{
|
{
|
||||||
$prog_count = $this->count['unknown']['num'] + $this->count['deprecated']['num'];
|
// $prog_count = $this->count['unknown']['num'] + $this->count['deprecated']['num'];
|
||||||
$this->sendProgress($prog_count,$this->totalFiles,FR_LAN_1);
|
// $this->sendProgress($prog_count,$this->totalFiles,FR_LAN_1);
|
||||||
|
|
||||||
if ($readdir != '.' && $readdir != '..' && $readdir != '/' && $readdir != '.svn' && $readdir != 'CVS' && $readdir != 'Thumbs.db' && (strpos('._', $readdir) === FALSE))
|
if (!in_array($readdir,$this->excludeFiles) && (strpos('._', $readdir) === false))
|
||||||
{
|
{
|
||||||
|
|
||||||
if (is_dir($dir.'/'.$readdir))
|
if (is_dir($dir.'/'.$readdir))
|
||||||
{
|
{
|
||||||
if (!isset($list[$readdir]) && ($level > 1 || $readdir == 'e107_install'))
|
if (!isset($list[$readdir]) && ($level > 1 || $readdir == 'e107_install'))
|
||||||
@@ -705,11 +727,15 @@ class file_inspector {
|
|||||||
$last_expand = true;
|
$last_expand = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
if($_POST['nolang']) // Hide Non-core Languages.
|
|
||||||
|
|
||||||
|
if($_POST['nolang'] && !empty($langs) && !empty($lang_short)) // Hide Non-core Languages.
|
||||||
{
|
{
|
||||||
|
|
||||||
// PHP Lang files.
|
// PHP Lang files.
|
||||||
@@ -736,13 +762,13 @@ class file_inspector {
|
|||||||
|
|
||||||
$aid = strtolower($readdir);
|
$aid = strtolower($readdir);
|
||||||
|
|
||||||
|
|
||||||
if (!isset($this -> files[$dir_id][$aid]['file']) && !$known[$dir_id][$aid])
|
if (!isset($this -> files[$dir_id][$aid]['file']) && !$known[$dir_id][$aid])
|
||||||
{
|
{
|
||||||
if (strpos($dir.'/'.$readdir, 'htmlarea') === false) {
|
if (strpos($dir.'/'.$readdir, 'htmlarea') === false) {
|
||||||
if (isset($deprecated[$readdir]))
|
if (isset($deprecated[$readdir]))
|
||||||
{
|
{
|
||||||
if ($_POST['oldcore']) {
|
if ($_POST['oldcore'])
|
||||||
|
{
|
||||||
$this -> files[$dir_id][$aid]['file'] = ($_POST['type'] == 'tree') ? $readdir : $dir.'/'.$readdir;
|
$this -> files[$dir_id][$aid]['file'] = ($_POST['type'] == 'tree') ? $readdir : $dir.'/'.$readdir;
|
||||||
$this -> files[$dir_id][$aid]['size'] = filesize($dir.'/'.$readdir);
|
$this -> files[$dir_id][$aid]['size'] = filesize($dir.'/'.$readdir);
|
||||||
$this -> files[$dir_id][$aid]['icon'] = 'file_old';
|
$this -> files[$dir_id][$aid]['icon'] = 'file_old';
|
||||||
@@ -1454,7 +1480,7 @@ if (vartrue($_POST['regex'])) {
|
|||||||
} else {
|
} else {
|
||||||
$text .= ".f { padding: 1px 0px 1px 8px; vertical-align: bottom; width: 90%; white-space: nowrap }\n";
|
$text .= ".f { padding: 1px 0px 1px 8px; vertical-align: bottom; width: 90%; white-space: nowrap }\n";
|
||||||
}
|
}
|
||||||
$text .= ".d { margin: 2px 0px 1px 8px; cursor: pointer; white-space: nowrap }
|
$text .= ".d { margin: 2px 0px 1px 8px; cursor: default; white-space: nowrap }
|
||||||
.s { padding: 1px 8px 1px 0px; vertical-align: bottom; width: 10%; white-space: nowrap }
|
.s { padding: 1px 8px 1px 0px; vertical-align: bottom; width: 10%; white-space: nowrap }
|
||||||
.t { margin-top: 1px; width: 100%; border-collapse: collapse; border-spacing: 0px }
|
.t { margin-top: 1px; width: 100%; border-collapse: collapse; border-spacing: 0px }
|
||||||
.w { padding: 1px 0px 1px 8px; vertical-align: bottom; width: 90% }
|
.w { padding: 1px 0px 1px 8px; vertical-align: bottom; width: 90% }
|
||||||
|
@@ -209,11 +209,11 @@ class adminstyle_infopanel
|
|||||||
// ------------------------------- e107 News --------------------------------
|
// ------------------------------- e107 News --------------------------------
|
||||||
|
|
||||||
$newsTabs = array();
|
$newsTabs = array();
|
||||||
$newsTabs['core'] = array('caption'=>'General','text'=>"<div id='e-adminfeed' style='min-height:300px'></div><div class='right'><a rel='external' href='".ADMINFEEDMORE."'>".LAN_MORE."</a></div>");
|
$newsTabs['coreFeed'] = array('caption'=>'General','text'=>"<div id='e-adminfeed' style='min-height:300px'></div><div class='right'><a rel='external' href='".ADMINFEEDMORE."'>".LAN_MORE."</a></div>");
|
||||||
$newsTabs['plugin'] = array('caption'=>'Plugins','text'=>"<div id='e-adminfeed-plugin'></div>");
|
$newsTabs['pluginFeed'] = array('caption'=>'Plugins','text'=>"<div id='e-adminfeed-plugin'></div>");
|
||||||
$newsTabs['theme'] = array('caption'=>'Themes','text'=>"<div id='e-adminfeed-theme'></div>");
|
$newsTabs['themeFeed'] = array('caption'=>'Themes','text'=>"<div id='e-adminfeed-theme'></div>");
|
||||||
|
|
||||||
$text2 = $ns->tablerender("Latest e107 News",e107::getForm()->tabs($newsTabs, array('active'=>'core')),"core-infopanel_news",true);
|
$text2 = $ns->tablerender("Latest e107 News",e107::getForm()->tabs($newsTabs, array('active'=>'coreFeed')),"core-infopanel_news",true);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1230,9 +1230,9 @@ li.rssRow > div {
|
|||||||
|
|
||||||
#e-online table { margin-top:10px; margin-left:auto; margin-right:auto }
|
#e-online table { margin-top:10px; margin-left:auto; margin-right:auto }
|
||||||
#core-plugin-list img.icon { width: 32px; height:32px }
|
#core-plugin-list img.icon { width: 32px; height:32px }
|
||||||
.tab-content #core,
|
.tab-content #coreFeed,
|
||||||
.tab-content #plugin,
|
.tab-content #pluginFeed,
|
||||||
.tab-content #theme { padding-top:20px }
|
.tab-content #themeFeed { padding-top:20px }
|
||||||
|
|
||||||
.alert-warning pre { color: white }
|
.alert-warning pre { color: white }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user