vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Ask about the hook! (https://vborg.vbsupport.ru/showthread.php?t=199589)

Hanoifishing 12-23-2008 05:32 AM

Ask about the hook!
 
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

Quote:

Originally Posted by Hanoifishing (Post 1692942)
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:
PHP Code:

$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:

Code:

        $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.


All times are GMT. The time now is 02:12 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00991 seconds
  • Memory Usage 1,738KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete