Aggiornata lista delle funzioni rimosse
Aggiornata lista delle funzioni rimosse nel CHANGELOG.
This commit is contained in:
parent
a84bf559c7
commit
c432209ea6
52
CHANGELOG.md
52
CHANGELOG.md
|
@ -4,13 +4,20 @@ Tutti i maggiori cambiamenti di questo progetto saranno documentati in questo fi
|
||||||
|
|
||||||
Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://keepachangelog.com/), e il progetto segue il [Semantic Versioning](http://semver.org/) per definire le versioni delle release.
|
Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://keepachangelog.com/), e il progetto segue il [Semantic Versioning](http://semver.org/) per definire le versioni delle release.
|
||||||
|
|
||||||
<!-- TOC depthFrom:2 depthTo:2 orderedList:false updateOnSave:true withLinks:true -->
|
|
||||||
|
|
||||||
- [2.3 (In sviluppo)](#23-in-sviluppo)
|
- [2.3 (In sviluppo)](#23-in-sviluppo)
|
||||||
|
- [Aggiunto (Added)](#aggiunto-added)
|
||||||
|
- [Modificato (Changed)](#modificato-changed)
|
||||||
|
- [Deprecato (Deprecated)](#deprecato-deprecated)
|
||||||
|
- [Rimosso (Removed)](#rimosso-removed)
|
||||||
|
- [Fixed](#fixed)
|
||||||
|
- [Sicurezza (Security)](#sicurezza-security)
|
||||||
- [2.2 (2016-11-10)](#22-2016-11-10)
|
- [2.2 (2016-11-10)](#22-2016-11-10)
|
||||||
|
- [Aggiunto (Added)](#aggiunto-added)
|
||||||
|
- [Fixed](#fixed)
|
||||||
- [2.1 (2015-04-02)](#21-2015-04-02)
|
- [2.1 (2015-04-02)](#21-2015-04-02)
|
||||||
|
- [Aggiunto (Added)](#aggiunto-added)
|
||||||
<!-- /TOC -->
|
- [Modificato (Changed)](#modificato-changed)
|
||||||
|
- [Fixed](#fixed)
|
||||||
|
|
||||||
## 2.3 (In sviluppo)
|
## 2.3 (In sviluppo)
|
||||||
|
|
||||||
|
@ -91,27 +98,28 @@ Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://k
|
||||||
### Rimosso (Removed)
|
### Rimosso (Removed)
|
||||||
|
|
||||||
- Funzioni PHP non utilizzate (`lib/functions.php`)
|
- Funzioni PHP non utilizzate (`lib/functions.php`)
|
||||||
|
- coolDate
|
||||||
|
- cut_text
|
||||||
|
- data_italiana
|
||||||
|
- dateadd
|
||||||
|
- full_html_entity_decode
|
||||||
|
- gestione_sessioni
|
||||||
|
- get_module_name
|
||||||
|
- get_module_name_by_id
|
||||||
|
- get_text_around
|
||||||
|
- get_user_browser
|
||||||
|
- getAvailableModules
|
||||||
|
- getLastPathSegment
|
||||||
|
- getSistemaOperativo
|
||||||
|
- getVersion
|
||||||
- is_id_ok
|
- is_id_ok
|
||||||
|
- mytruncate
|
||||||
|
- read_file
|
||||||
|
- RemoveNonASCIICharacters
|
||||||
|
- show_error_messages
|
||||||
|
- show_info_messages
|
||||||
- write_error
|
- write_error
|
||||||
- write_ok
|
- write_ok
|
||||||
- getAvailableModules
|
|
||||||
- read_file
|
|
||||||
- dateadd
|
|
||||||
- show_info_messages
|
|
||||||
- show_error_messages
|
|
||||||
- get_module_name
|
|
||||||
- mytruncate
|
|
||||||
- get_user_browser
|
|
||||||
- RemoveNonASCIICharacters
|
|
||||||
- full_html_entity_decode
|
|
||||||
- data_italiana
|
|
||||||
- gestione_sessioni
|
|
||||||
- get_text_around
|
|
||||||
- coolDate
|
|
||||||
- get_module_name_by_id
|
|
||||||
- cut_text
|
|
||||||
- getLastPathSegment
|
|
||||||
- cut_text
|
|
||||||
- Funzioni JS non utilizzate (`lib/functionsjs.php`)
|
- Funzioni JS non utilizzate (`lib/functionsjs.php`)
|
||||||
- Cartelle e file non più utilizzati (`lib/jscripts`, `widgets`, `share`, `lib/dbo.class.php`, `lib/widgets.class.php`, ...)
|
- Cartelle e file non più utilizzati (`lib/jscripts`, `widgets`, `share`, `lib/dbo.class.php`, `lib/widgets.class.php`, ...)
|
||||||
|
|
||||||
|
|
|
@ -871,10 +871,11 @@ function getConfig()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Restituisce se l'user-agent (browser web) è una versione mobile
|
* Restituisce se l'user-agent (browser web) è una versione mobile.
|
||||||
*
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
function isMobile() {
|
function isMobile()
|
||||||
return preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER["HTTP_USER_AGENT"]);
|
{
|
||||||
|
return preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER['HTTP_USER_AGENT']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue