mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Miglioramento nella gestione delle traduzioni
Aggiounto supporto alla traduzione nella dicitura dello sconto. Aggiunto messaggio di referenza contratti e interventi nelle fatture. Aggiunto supporto a messaggi di speigazione per i widget.
This commit is contained in:
@ -758,6 +758,8 @@ function get($param, $rule = 'text')
|
||||
/**
|
||||
* Controlla se è in corso una richiesta AJAX generata dal progetto.
|
||||
*
|
||||
* @since 2.3
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function isAjaxRequest()
|
||||
@ -772,6 +774,8 @@ function isAjaxRequest()
|
||||
* @param array|float $second
|
||||
* @param int $decimals
|
||||
*
|
||||
* @since 2.3
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
function sum($first, $second = null, $decimals = null)
|
||||
@ -800,6 +804,14 @@ function sum($first, $second = null, $decimals = null)
|
||||
return floatval($result);
|
||||
}
|
||||
|
||||
/**
|
||||
* Effettua le operazioni automatiche di redirect tra le pagine.
|
||||
*
|
||||
* @param int $id_module
|
||||
* @param int $id_record
|
||||
*
|
||||
* @since 2.3
|
||||
*/
|
||||
function redirectOperation($id_module, $id_record)
|
||||
{
|
||||
$backto = filter('backto');
|
||||
@ -816,3 +828,15 @@ function redirectOperation($id_module, $id_record)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Predispone un testo per l'inserimento all'interno di un attributo HTML.
|
||||
*
|
||||
* @param string $string
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function prepareToField($string)
|
||||
{
|
||||
return str_replace('"', '"', $string);
|
||||
}
|
||||
|
Reference in New Issue
Block a user