1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-26 07:44:02 +01:00
openstamanager/lib/deprecated.php
Thomas Zilio 8e60134975 Separazione helper
Separazione degli helper in un file apposito (lib/helpers.php), rimozione funzioni deprecate nella versione 2.3.
Risoluzione bug di aggiornamento.
2018-07-08 17:39:20 +02:00

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);
}