Exemple #1
0
 public function hookDeleteUser(GWF_User $user, array $args)
 {
     # TODO: delete a lot of stuff.
     # Let's start with unlinking all sites.
     $this->includeClass('WC_RegAt');
     $userid = $user->getID();
     if (false === WC_RegAt::unlinkAll($userid)) {
         return GWF_HTML::err('ERR_DATABASE', array(__FILE__, __LINE__));
     }
     return true;
 }