2018-07-08 17:39:20 +02:00
|
|
|
<?php
|
|
|
|
|
2018-07-17 12:05:21 +02:00
|
|
|
/**
|
|
|
|
* Funzioni di aiuto per la semplificazione del codice.
|
|
|
|
*
|
|
|
|
* @since 2.4.2
|
|
|
|
*/
|
|
|
|
|
2018-07-08 17:39:20 +02:00
|
|
|
/**
|
|
|
|
* Restituisce l'oggetto dedicato alla gestione della connessione con il database.
|
|
|
|
*
|
|
|
|
* @return \Database
|
|
|
|
*/
|
|
|
|
function database()
|
|
|
|
{
|
|
|
|
return \Database::getConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
2018-07-08 17:39:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-08 17:39:20 +02:00
|
|
|
*
|
2018-07-19 14:34:52 +02:00
|
|
|
* @since 2.4.2
|
|
|
|
*
|
2018-07-08 18:11:17 +02:00
|
|
|
* @return string
|
2018-07-08 17:39:20 +02:00
|
|
|
*/
|
2018-07-09 10:44:54 +02:00
|
|
|
function setting($nome, $again = false)
|
2018-07-08 17:39:20 +02:00
|
|
|
{
|
2018-07-09 10:44:54 +02:00
|
|
|
return \Settings::getValue($nome, $again);
|
2018-07-08 17:39:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restituisce l'oggetto dedicato alla gestione dei messaggi per l'utente.
|
|
|
|
*
|
2018-07-19 14:34:52 +02:00
|
|
|
* @since 2.4.2
|
|
|
|
*
|
2018-07-08 17:39:20 +02:00
|
|
|
* @return \Util\Messages
|
|
|
|
*/
|
|
|
|
function flash()
|
|
|
|
{
|
2018-07-19 17:49:41 +02:00
|
|
|
return App::flash();
|
2018-07-08 17:39:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restituisce l'oggetto dedicato alla gestione dell'autenticazione degli utente.
|
|
|
|
*
|
2018-07-19 14:34:52 +02:00
|
|
|
* @since 2.4.2
|
|
|
|
*
|
2018-07-08 17:39:20 +02:00
|
|
|
* @return \Auth
|
|
|
|
*/
|
|
|
|
function auth()
|
|
|
|
{
|
|
|
|
return \Auth::getInstance();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restituisce l'oggetto dedicato alla gestione della traduzione del progetto.
|
|
|
|
*
|
2018-07-19 14:34:52 +02:00
|
|
|
* @since 2.4.2
|
|
|
|
*
|
2018-07-08 17:39:20 +02:00
|
|
|
* @return \Translator
|
|
|
|
*/
|
|
|
|
function trans()
|
|
|
|
{
|
|
|
|
return \Translator::getInstance();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restituisce l'oggetto dedicato alla gestione della conversione di numeri e date.
|
|
|
|
*
|
2018-07-19 14:34:52 +02:00
|
|
|
* @since 2.4.2
|
|
|
|
*
|
2018-07-08 17:39:20 +02:00
|
|
|
* @return \Intl\Formatter
|
|
|
|
*/
|
|
|
|
function formatter()
|
|
|
|
{
|
|
|
|
return \Translator::getFormatter();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 = [])
|
|
|
|
{
|
|
|
|
return \Translator::translate($string, $parameters, $operations);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrocompatibilità (con la funzione gettext)
|
|
|
|
if (!function_exists('_')) {
|
|
|
|
function _($string, $parameters = [], $operations = [])
|
|
|
|
{
|
|
|
|
return tr($string, $parameters, $operations);
|
|
|
|
}
|
|
|
|
}
|
2018-07-19 14:34:52 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Restituisce l'oggetto dedicato alla gestione dei log.
|
|
|
|
*
|
|
|
|
* @since 2.4.2
|
|
|
|
*
|
|
|
|
* @return \Monolog\Logger
|
|
|
|
*/
|
|
|
|
function logger()
|
|
|
|
{
|
|
|
|
return Monolog\Registry::getInstance('logs');
|
|
|
|
}
|