', $bmiTroubleshootingLogShareInfo);
$bmiTroubleshootingLogShareInfo = str_replace('%s3', '', $bmiTroubleshootingLogShareInfo);
$bmiTroubleshootingLogShareInfo = str_replace('%s4', '', $bmiTroubleshootingLogShareInfo);
$bmiTroubleshootingLogShareInfo = str_replace('%s2', '', $bmiTroubleshootingLogShareInfo);
$pros = false;
if (defined('BMI_BACKUP_PRO') && BMI_BACKUP_PRO == 1) {
$pros = true;
}
?>
to_array();
$i = 0;
foreach ($info as $key => $value) {
$i++; ?>
|
format('Y-m-d H:i:s.u');
} elseif (is_array($value)) {
if (sizeof($value) === 0) {
echo '---';
} else {
if ($key == 'wp_active_themes_info') {
echo $value[0]['name'] . '@' . $value[0]['version'];
} elseif ($key == 'wp_active_plugins_info') {
$disp = '';
for ($i = 0; $i < sizeof($value); ++$i) {
$disp .= $value[$i]['name'] . '@' . $value[$i]['version'] . ' | ';
}
echo rtrim($disp, ' | ');
} else {
echo implode(' | ', $value);
}
}
} elseif (is_bool($value)) {
echo $value === true ? 'true' : 'false';
} else {
if (!$value || is_null($value) || strlen($value) == '0') {
echo '---';
} else {
echo $value;
}
} ?> |
|
" data-hide="">
|