Exemple #1
0
 function &unsetStaticVar($name)
 {
     $refhack =& Ak::_staticVar($name, $refhackvar = null, true);
     return $refhack;
 }
Exemple #2
0
 /**
  * Sets the current user
  *
  * @param User $CurrentUser
  */
 function setCurrentUser($CurrentUser)
 {
     Ak::_staticVar('CurrentUser', $CurrentUser);
 }
Exemple #3
0
 static function &unsetStaticVar($name)
 {
     $null = null;
     $refhack = Ak::_staticVar($name, $null, true);
     return $refhack;
 }