Executes the filter with given request and response objects.
Implements Filterable. Definition at line 57 of file class_UserUpdateFilter.php. References BaseFrameworkSystem.$userInstance, and Registry.getRegistry(). 00057 { 00058 // Get user instance from registry 00059 $userInstance = Registry::getRegistry()->getInstance('user'); 00060 00061 // Now update last activity 00062 $userInstance->updateLastActivity($requestInstance); 00063 00064 // Update auth data as well 00065 $authInstance = Registry::getRegistry()->getInstance('auth'); 00066 $authInstance->updateAuthData(); 00067 00068 // Write all updates to the database 00069 $userInstance->flushPendingUpdates(); 00070 }
Here is the call graph for this function:
![]()
|
1.5.6