openstamanager/lib/helpers.php

296 lines
6.2 KiB
PHP
Raw Normal View History

<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2020-11-06 10:46:42 +01:00
/*
2018-07-17 12:05:21 +02:00
* Funzioni di aiuto per la semplificazione del codice.
*
* @since 2.4.2
*/
2019-09-11 08:48:37 +02:00
use HTMLBuilder\HTMLBuilder;
use Intl\Formatter;
use Models\Module;
2018-07-17 12:05:21 +02:00
/**
* Restituisce l'oggetto dedicato alla gestione della connessione con il database.
*
* @return \Database
*/
function database()
{
2021-02-19 11:52:34 +01:00
if (!app()->has(Database::class)) {
app()->instance(Database::class, new Database());
}
return app()->get(Database::class);
}
/**
* Prepara il parametro inserito per l'inserimento in una query SQL.
* Attenzione: protezione di base contro SQL Injection.
*
* @param string $parameter
*
* @since 2.3
*
* @return mixed
*/
function prepare($parameter)
{
2018-09-20 12:05:22 +02:00
return database()->prepare($parameter);
}
/**
* Restituisce il contenuto sanitarizzato dell'input dell'utente.
*
* @param string $param Nome del parametro
* @param string $method Posizione del parametro (post o get)
* @param bool $raw Restituire il valore non formattato
*
* @since 2.3
*
* @return string
*/
function filter($param, $method = null, $raw = false)
{
return \Filter::getValue($param, $method, $raw);
}
/**
* Restituisce il contenuto sanitarizzato dell'input dell'utente.
*
* @param string $param Nome del parametro
* @param bool $raw Restituire il valore non formattato
*
* @since 2.3
*
* @return string
*/
function post($param, $raw = false)
{
return \Filter::getValue($param, 'post', $raw);
}
/**
* Restituisce il contenuto sanitarizzato dell'input dell'utente.
*
* @param string $param Nome del parametro
* @param bool $raw Restituire il valore non formattato
*
* @since 2.3
*
* @return string
*/
function get($param, $raw = false)
{
return \Filter::getValue($param, 'get', $raw);
}
/**
* Legge il valore di un'impostazione dalla tabella zz_settings.
*
* @param string $name
2018-07-08 18:11:17 +02:00
* @param bool $again
*
2018-07-19 14:34:52 +02:00
* @since 2.4.2
*
2018-07-08 18:11:17 +02:00
* @return string
*/
2019-01-03 11:04:28 +01:00
function setting($name, $again = false)
{
2019-01-03 11:04:28 +01:00
return \Settings::getValue($name);
}
/**
* Restituisce l'oggetto dedicato alla gestione dei messaggi per l'utente.
*
2018-07-19 14:34:52 +02:00
* @since 2.4.2
*
* @return \Util\Messages
*/
function flash()
{
return AppLegacy::flash();
}
/**
* Restituisce l'oggetto dedicato alla gestione della conversione di numeri e date.
*
2018-07-19 14:34:52 +02:00
* @since 2.4.2
*
* @return \Intl\Formatter
*/
function formatter()
{
2021-02-19 11:52:34 +01:00
if (!app()->has(Formatter::class)) {
$formatter = new Formatter(
app()->getLocale(),
empty($options['timestamp']) ? 'd/m/Y H:i' : $options['timestamp'],
empty($options['date']) ? 'd/m/Y' : $options['date'],
empty($options['time']) ? 'H:i' : $options['time'],
empty($options['number']) ? [
'decimals' => ',',
'thousands' => '.',
] : $options['number']
);
2021-02-19 11:52:34 +01:00
//$formatter->setPrecision(auth()->check() ? setting('Cifre decimali per importi') : 2);
$formatter->setPrecision(2);
app()->instance(Formatter::class, $formatter);
}
return app()->get(Formatter::class);
}
/**
* Restituisce la traduzione del messaggio inserito.
*
* @param string $string
* @param array $parameters
* @param string $operations
*
* @since 2.3
*
* @return string
*/
function tr($string, $parameters = [], $operations = [])
{
$result = _i($string, $parameters);
return replace($result, $parameters);
}
2021-02-19 11:52:34 +01:00
// Retro-compatibilità (con la funzione gettext)
if (!function_exists('_')) {
function _($string, $parameters = [], $operations = [])
{
2021-02-19 11:52:34 +01:00
return tr($string, $parameters);
}
}
2018-07-19 14:34:52 +02:00
2019-02-22 10:37:37 +01:00
/**
* Restituisce il numero indicato formattato secondo la configurazione del sistema.
*
* @param float $number
* @param int $decimals
*
* @return string
*
* @since 2.4.8
*/
function numberFormat($number, $decimals = null)
2019-02-22 10:37:37 +01:00
{
2021-01-04 18:54:23 +01:00
return formatter()->formatNumber($number, $decimals);
2019-02-22 10:37:37 +01:00
}
/**
* Restituisce il timestamp indicato formattato secondo la configurazione del sistema.
*
* @param string $timestamp
+ *
* @return string
*
* @since 2.4.8
*/
function timestampFormat($timestamp)
{
2021-01-04 18:54:23 +01:00
return formatter()->formatTimestamp($timestamp);
2019-02-22 10:37:37 +01:00
}
/**
* Restituisce la data indicata formattato secondo la configurazione del sistema.
*
* @param string $date
*
* @return string
*
* @since 2.4.8
*/
function dateFormat($date)
{
2021-01-04 18:54:23 +01:00
return formatter()->formatDate($date);
2019-02-22 10:37:37 +01:00
}
/**
* Restituisce l'orario indicato formattato secondo la configurazione del sistema.
*
* @param string $time
*
* @return string
*
* @since 2.4.8
*/
function timeFormat($time)
{
2021-01-04 18:54:23 +01:00
return formatter()->formatTime($time);
2019-02-22 10:37:37 +01:00
}
/**
* Restituisce il simbolo della valuta del gestione.
*
* @since 2.4.9
*
* @return string
*/
function currency()
{
2021-01-04 18:54:23 +01:00
return AppLegacy::getCurrency();
}
/**
* Restituisce il numero indicato formattato come una valuta secondo la configurazione del sistema.
*
* @param string $time
*
* @return string
*
* @since 2.4.9
*/
function moneyFormat($number, $decimals = null)
{
return tr('_TOTAL_ _CURRENCY_', [
'_TOTAL_' => numberFormat($number, $decimals),
'_CURRENCY_' => currency(),
]);
}
2019-09-11 08:48:37 +02:00
/**
* Restituisce il numero indicato formattato come una valuta secondo la configurazione del sistema.
*
* @return string
*
* @since 2.4.11
*/
function input(array $json)
{
return HTMLBuilder::parse($json);
}
/*
* Restituisce il modulo relativo all'identificativo.
*
* @since 2.5
*
* @return \Modules\Module
*/
function module($identifier)
{
return Module::pool($identifier);
}