mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-11 15:14:01 +01:00
Migliorie minori
This commit is contained in:
parent
89e7e5d821
commit
4e8b569b27
@ -3,56 +3,58 @@
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
// Personalizzazioni di codice
|
||||
$custom = custom();
|
||||
$tables = customTables();
|
||||
if (!empty($custom) || !empty($tables)) {
|
||||
echo '
|
||||
<div class="box box-warning">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><span class="tip" title="'.tr('Elenco delle personalizzazioni rilevabili dal gestionale').'.">
|
||||
<i class="fa fa-edit"></i> '.tr('Personalizzazioni').'
|
||||
</span></h3>
|
||||
</div>
|
||||
<div class="box-body">';
|
||||
if (function_exists (custom) ){
|
||||
$custom = custom();
|
||||
$tables = customTables();
|
||||
if (!empty($custom) || !empty($tables)) {
|
||||
echo '
|
||||
<div class="box box-warning">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><span class="tip" title="'.tr('Elenco delle personalizzazioni rilevabili dal gestionale').'.">
|
||||
<i class="fa fa-edit"></i> '.tr('Personalizzazioni').'
|
||||
</span></h3>
|
||||
</div>
|
||||
<div class="box-body">';
|
||||
|
||||
if (!empty($custom)) {
|
||||
echo '
|
||||
<table class="table table-hover table-striped">
|
||||
<tr>
|
||||
<th width="10%">'.tr('Percorso').'</th>
|
||||
<th width="15%">'.tr('Cartella personalizzata').'</th>
|
||||
<th width="15%">'.tr('Database personalizzato').'</th>
|
||||
</tr>';
|
||||
if (!empty($custom)) {
|
||||
echo '
|
||||
<table class="table table-hover table-striped">
|
||||
<tr>
|
||||
<th width="10%">'.tr('Percorso').'</th>
|
||||
<th width="15%">'.tr('Cartella personalizzata').'</th>
|
||||
<th width="15%">'.tr('Database personalizzato').'</th>
|
||||
</tr>';
|
||||
|
||||
foreach ($custom as $element) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.$element['path'].'</td>
|
||||
<td>'.($element['directory'] ? 'Si' : 'No').'</td>
|
||||
<td>'.($element['database'] ? 'Si' : 'No').'</td>
|
||||
</tr>';
|
||||
}
|
||||
foreach ($custom as $element) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.$element['path'].'</td>
|
||||
<td>'.($element['directory'] ? 'Si' : 'No').'</td>
|
||||
<td>'.($element['database'] ? 'Si' : 'No').'</td>
|
||||
</tr>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</table>
|
||||
echo '
|
||||
</table>
|
||||
|
||||
<p><strong>'.tr("Si sconsiglia l'aggiornamento senza il supporto dell'assistenza ufficiale").'.</strong></p>';
|
||||
} else {
|
||||
echo '
|
||||
<p>'.tr('Non ci sono strutture personalizzate').'.</p>';
|
||||
}
|
||||
<p><strong>'.tr("Si sconsiglia l'aggiornamento senza il supporto dell'assistenza ufficiale").'.</strong></p>';
|
||||
} else {
|
||||
echo '
|
||||
<p>'.tr('Non ci sono strutture personalizzate').'.</p>';
|
||||
}
|
||||
|
||||
if (!empty($tables)) {
|
||||
echo '
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i>
|
||||
<b>Attenzione!</b> Ci sono delle tabelle non previste nella versione standard del gestionale: '.implode(', ', $tables).'.
|
||||
</div>';
|
||||
}
|
||||
if (!empty($tables)) {
|
||||
echo '
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i>
|
||||
<b>Attenzione!</b> Ci sono delle tabelle non previste nella versione standard del gestionale: '.implode(', ', $tables).'.
|
||||
</div>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</div>
|
||||
</div>';
|
||||
echo '
|
||||
</div>
|
||||
</div>';
|
||||
}
|
||||
}
|
||||
|
||||
// Aggiornamenti
|
||||
|
@ -69,12 +69,13 @@ function restore() {
|
||||
</script>';
|
||||
|
||||
$upload_max_filesize = ini_get('upload_max_filesize');
|
||||
$max_execution_time = ini_get('max_execution_time');
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
<div class="box box-success">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title">
|
||||
'.tr('Ripristina backup').' <small>(upload_max_filesize: '.$upload_max_filesize.')</small>
|
||||
'.tr('Ripristina backup').' <small>(upload_max_filesize: '.$upload_max_filesize.')</small> <small>(max_execution_time: '.$max_execution_time.')</small>
|
||||
</h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
|
Loading…
Reference in New Issue
Block a user