Aggiunta possibilità di specificare porta servizio mysql + help text per plugins
This commit is contained in:
parent
35bb5c9ce3
commit
22dff2511d
|
@ -5,6 +5,7 @@ $db_host = '|host|';
|
|||
$db_username = '|username|';
|
||||
$db_password = '|password|';
|
||||
$db_name = '|database|';
|
||||
//$port = '|port|';
|
||||
|
||||
// Percorso della cartella di backup
|
||||
$backup_dir = __DIR__.'/backup/';
|
||||
|
|
|
@ -483,7 +483,7 @@ if (empty($creation) && (!file_exists('config.inc.php') || !$valid_config)) {
|
|||
// PARAMETRI
|
||||
echo '
|
||||
<div id="step-3">
|
||||
<a href="http://www.openstamanager.com/contattaci/?subject=Assistenza%20installazione%20OSM" target="_blank" ><img class="pull-right" width="32" src="'.$img.'/help.png" alt="'.tr('Aiuto').'" title="'.tr('Contatta il nostro help-desk').'"/></a>
|
||||
<a href="https://www.openstamanager.com/contattaci/?subject=Assistenza%20installazione%20OSM" target="_blank" ><img class="pull-right" width="32" src="'.$img.'/help.png" alt="'.tr('Aiuto').'" title="'.tr('Contatta il nostro help-desk').'"/></a>
|
||||
|
||||
<p>'.tr('Non hai ancora configurato OpenSTAManager').'.</p>
|
||||
<p><small class="help-block">'.tr('Configura correttamente il software con i seguenti parametri (modificabili successivamente dal file _FILE_)', [
|
||||
|
|
|
@ -19,7 +19,8 @@ if (!empty($id_plugin)) {
|
|||
|
||||
echo '
|
||||
<h4>
|
||||
'.$element['name'];
|
||||
<span class="'.(!empty($element['help']) ? ' tip' : '').'"'.(!empty($element['help']) ? ' title="'.prepareToField($element['help']).'" data-position="bottom"' : '').' >
|
||||
'.$element['title'].(!empty($element['help']) ? ' <i class="fa fa-question-circle-o"></i>' : '').'</span>';
|
||||
|
||||
if (file_exists($docroot.'/plugins/'.$element['directory'].'/add.php')) {
|
||||
echo '
|
||||
|
|
|
@ -56,7 +56,10 @@ class Database extends Util\Singleton
|
|||
$host = $temp[0];
|
||||
$port = !empty($temp[1]) ? $temp[1] : null;
|
||||
}
|
||||
|
||||
|
||||
//possibilità di specificare una porta per il servizio mysql diversa dalla standard 3306
|
||||
$port = (!empty(App::getConfig()['port'])) ? App::getConfig()['port'] : $port;
|
||||
|
||||
$this->host = $host;
|
||||
if (!empty($port) && is_int($port * 1)) {
|
||||
$this->port = $port;
|
||||
|
|
|
@ -25,4 +25,10 @@ UPDATE `zz_group_module` SET `name` = 'Mostra interventi ai clienti coinvolti' W
|
|||
UPDATE `zz_plugins` SET `enabled` = '1' WHERE `zz_plugins`.`name` = 'Pianificazione fatturazione';
|
||||
|
||||
-- Abilito widget Rate contrattuali in dashboard
|
||||
UPDATE `zz_widgets` SET `enabled` = '1' WHERE `zz_widgets`.`name` = 'Rate contrattuali';
|
||||
UPDATE `zz_widgets` SET `enabled` = '1' WHERE `zz_widgets`.`name` = 'Rate contrattuali';
|
||||
|
||||
-- Help text per i plugins
|
||||
ALTER TABLE `zz_plugins` ADD `help` VARCHAR(255) NOT NULL AFTER `directory`;
|
||||
|
||||
-- Help text per plugin Ddt del cliente
|
||||
UPDATE `zz_plugins` SET `help` = 'Righe ddt del cliente. I ddt senza righe non saranno visualizzati.' WHERE `zz_plugins`.`name` = 'Ddt del cliente';
|
Loading…
Reference in New Issue