PDA

View Full Version : Can some export help me write this simple plugin??? please?


benative
07-20-2011, 01:52 PM
basically what I want to do is
prevent "user awaiting email confirmation" to view https://www.mydomain.com/profile.php?do=editpassword

I heard that you have to create a plug in via the usercp_start hook location. Does anybody know how to create a plugin for this??

btw, the user id of user awaiting email confirmation on my forum is "3"

kh99
07-20-2011, 02:15 PM
Hook usercp_start isn't in profile.php, but if you want to prevent usergroup 3 users from doing profile.php?do=editpassword, you could use hook location profile_editpassword_start and code like:

if (is_member_of($vbulletin->userinfo, 3))
{
print_no_permission();
}

benative
07-20-2011, 02:45 PM
Thanks, that worked!!