mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-26 07:44:02 +01:00
8e60134975
Separazione degli helper in un file apposito (lib/helpers.php), rimozione funzioni deprecate nella versione 2.3. Risoluzione bug di aggiornamento.
20 lines
384 B
PHP
20 lines
384 B
PHP
<?php
|
|
|
|
// trigger_error(tr('Funzione deprecata!'), E_USER_DEPRECATED);
|
|
|
|
/**
|
|
* Individua il codice successivo.
|
|
*
|
|
* @deprecated 2.4
|
|
*
|
|
* @param string $str
|
|
* @param int $qty
|
|
* @param string $mask
|
|
*/
|
|
function get_next_code($str, $qty = 1, $mask = '')
|
|
{
|
|
trigger_error(tr('Funzione deprecata!'), E_USER_DEPRECATED);
|
|
|
|
return Util\Generator::generate($mask, $str, $qty);
|
|
}
|