Improved cache cleaner

This commit is contained in:
Pierre 2017-05-25 15:46:38 +02:00
parent e189fcd911
commit 884f25e1a2

View File

@ -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(){}
}, },
}, },