mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-29 15:26:27 +00:00
Improved cache cleaner
This commit is contained in:
parent
e189fcd911
commit
884f25e1a2
@ -27,7 +27,15 @@ var ComunicWeb = {
|
|||||||
* Application system functions
|
* Application system functions
|
||||||
*/
|
*/
|
||||||
system:{
|
system:{
|
||||||
//TODO: implement
|
/**
|
||||||
|
* Initializate the application
|
||||||
|
*/
|
||||||
|
init: function(){},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Restart the application
|
||||||
|
*/
|
||||||
|
restart: function(){},
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -162,7 +170,10 @@ var ComunicWeb = {
|
|||||||
* Functions to check data input in forms
|
* Functions to check data input in forms
|
||||||
*/
|
*/
|
||||||
formChecker: {
|
formChecker: {
|
||||||
//TODO : implement
|
/**
|
||||||
|
* Check an input
|
||||||
|
*/
|
||||||
|
checkInput: function(input, inFormGroup){},
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -314,7 +325,21 @@ var ComunicWeb = {
|
|||||||
* Get user infos
|
* Get user infos
|
||||||
*/
|
*/
|
||||||
userInfos: {
|
userInfos: {
|
||||||
//TODO: implement
|
/**
|
||||||
|
* @var {String} User infos cache
|
||||||
|
*/
|
||||||
|
usersInfos: {},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get user informations
|
||||||
|
*/
|
||||||
|
getUserInfos: function(userID, afterGetUserInfos){},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Empty user informations cache
|
||||||
|
* Remove all entries from user informations cache
|
||||||
|
*/
|
||||||
|
emptyUserInfosCache: function(){}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user