J'ai besoin de savoir si je dois rappeler mon assistant. redirectIfNotLoggedIn()
dans ajaxFunction, puisqu'il est déjà dans le constructeur :
class Group extends Controller {
function Group() {
parent::Controller();
redirectIfNotLoggedIn();
}
function ajaxFunction() {
//I am called via AJAX
//Do I need to call redirectIfNotLoggedIn() again?
//Or is the constructor called whenever I access this function via AJAX?
}
}
Toute aide serait appréciée :)