View Full Version : Ask about the hook!
Hanoifishing
12-23-2008, 05:32 AM
Hi All!
I have written a products that manage my mark's member. I have a question about the plugin to delete user's mark when delete user in admincp. What's hook can I use? Sorry for my english isn't good.
Please help me.
Thanks in advance.
Lynne
12-23-2008, 03:48 PM
I can't really tell what you are talking about. But, when you delete a user via the admin cp, you are using the admincp/user.php file and there is a hook called 'useradmin_prune' that I use for when I delete members and have to do more stuff afterwards.
Hanoifishing
12-24-2008, 04:42 AM
Hi!
Thank you for your help, I want to write a plugin in my product to delete member's mark in usermarks table.
Now I have known hook name.
Thank in advance.
Dismounted
12-24-2008, 08:31 AM
There is no "usermarks" table in a default installation in vBulletin.
Hanoifishing
12-24-2008, 03:10 PM
Hi!
usermarks is my table that I add it to my db, I write new product work with it. Each member have some record in it, and I want to delete that records, I know that I must write plugin, please tell me how?
Thanks in advance.!
Lynne
12-24-2008, 03:31 PM
Hi!
usermarks is my table that I add it to my db, I write new product work with it. Each member have some record in it, and I want to delete that records, I know that I must write plugin, please tell me how?
Thanks in advance.!
Like I told you, I use the useradmin_prune hook to do a query of my own when deleting users. I have an added table called "users" (with the s on the end - vbulletin has the "user" table without the s) and I have this query in that hook location:
$db->query_write("DELETE FROM " . TABLE_PREFIX . "users WHERE id IN ($userids)");
Hanoifishing
12-24-2008, 04:05 PM
Hi!
I add new plugin at useradmin_prune hook by add some code:
$db->query_write("DELETE FROM ".TABLE_PREFIX"usermarks WHERE userid in ($userids)
Now I go to my admincp then delete user but records in usermarks have existed.
How to delete it?
Thanks you very much!
Lynne
12-24-2008, 04:35 PM
Whoops. Mine removes the user when you do a Mass Delete. You are looking to delete a single user from the admin cp, right? If so, you can't use a plugin, you actually have to modify the code under the 'kill' option. Go to around line 277 or so of admincp/user.php. Look for this code and add your query in where I have mine in red:
$userdm =& datamanager_init('User', $vbulletin, ERRTYPE_CP);
$userdm->set_existing($info);
$userdm->delete();
unset($userdm);
$vbulletin->db->query_write("DELETE FROM " . TABLE_PREFIX . "users WHERE id=" . $vbulletin->GPC['userid'] . "");
define('CP_REDIRECT', 'user.php?do=modify');
print_stop_message('deleted_user_successfully');
Hanoifishing
12-25-2008, 05:51 AM
Hi Lynne!
I don't want to modify orginal vbb code. I want to add a hack mod to delete it. Is there another way? Can I use another hook to delete data without join with user table. Example in global_start?
Thank in advance.
Merry Christmas & Happy new year!
Dismounted
12-25-2008, 07:56 AM
There should be a hook called userdata_delete.
Lynne
12-25-2008, 04:24 PM
Yep, that one works (thanks, Hanson!). This is what I put there, you'll have to modify it for your own table:
$this->registry->db->query_write("DELETE FROM " . TABLE_PREFIX . "users WHERE id=" . $this->existing['userid']);
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.