Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 02-10-2008, 09:01 AM
legionofangels's Avatar
legionofangels legionofangels is offline
 
Join Date: Mar 2007
Posts: 485
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Different Promotions

How do I code non-usergroup items such as let's say additional smilies for example, to a usergroup?

I'm using this as an example as we're trying to set up some promotions based upon post count only, but they are things that don't affect the Usergroup directly or currently in the admin cp, like hiding a certain forum or custom avatars. They both have built in set ups for restricting the usergroups.

So how do I restrict the usergroups to other things on our board, or do I need complete custom coding for this?

Any mod out there that I missed in searching that already does this?
Reply With Quote
  #2  
Old 02-10-2008, 09:40 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry but i really don't understand.

What i read in your post is: How to setup a Usergroup promotion using something unrelated to Usergroups and without setting the Usergroup permissions, to set permissions for a Usergroup.

correct?
Reply With Quote
  #3  
Old 02-10-2008, 11:08 AM
legionofangels's Avatar
legionofangels legionofangels is offline
 
Join Date: Mar 2007
Posts: 485
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

lol I admit, I kinda slaughtered that, lemme retry.

Ok gonna set up premium memberships or "additional forum options" like an arcade or whatever, based upon user post count. Which means for each separate level they gain, I definitely will need to make new usergroups for this, which is besides the point.

However not all of the things we are going to give to members is an "add-on" from vb.org which typically has a "usergroups can use this" selection tool in the admin cp.

In the admin cp currently for things like Custom Avatars or Ability to see a Secret Forum there are post count or promotions you can use to allow users to get those options at certain post counts, reputation, or days on the site.

How do I do this for options such as "smilies'' which are not relative or designated to any certain set of usergroups?

i.e. Additonal Smilies granted to Users at 250 posts.
Reply With Quote
  #4  
Old 02-10-2008, 11:27 AM
MiahBeSmokin420 MiahBeSmokin420 is offline
 
Join Date: May 2007
Location: Ohio
Posts: 311
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no i know what your talking about i did that on my site

basically it takes a while if im understanding what your saying

basically what your going to want to do is

if you are tring to make like for example what i did 5 user groups

them make them get promoted and demoted through usergroups based apon time registered and post count

then just set what ever setting you want them to have for each user group you make

it takes a while but its worth it your site basically runs it self after a while lol i know mine dose lol

shit my site told my happy b-day and i didnt even rember installing a mod for it to do that

idk i install alot of shit

but ya if you talking about 10 posts then moves to the next user group

then on that next user group set the next promotion but then also set another promotion that demots them if they dont have a minimum

lol i know its confussing it took me about a week to set up all that shit minus the user group settings
Reply With Quote
  #5  
Old 02-10-2008, 11:29 PM
legionofangels's Avatar
legionofangels legionofangels is offline
 
Join Date: Mar 2007
Posts: 485
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Actually no, that's not what I meant.

I know how to set up the usergroups and even the user rank system so that it all works together. What I need to know how to do is how to set up awards for things that aren't in the promotions system.

Such as a different example, lets say that IPB Pro Arcade, not going to use it this is an example, but lets say we were.

Lets say I wanted to allow users on my board with 500 posts and above to be able to use it, how do I do that?

(( if that add on has a built in setting to do this, lets assume it doesn't for this example ))
Reply With Quote
  #6  
Old 02-10-2008, 11:46 PM
cheesegrits's Avatar
cheesegrits cheesegrits is offline
 
Join Date: May 2006
Posts: 500
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That's going to need customizing your site for each "thing" you want to control access to. What kind of customizing you need to do will depend on what the "thing" is. It might be as simple as template conditionals using is_member_of($userinfo,$goupid), and/or plugins in the "thing" to prevent them sidestepping the navbar link and going straight to a URL.

So say you have your Arcade link in the navbar, and your promotion groupw that let them play Arcade have the iD's of 27 and 32, you'd wrap this round your Arcade link ...

<if condition="is_member_of($userinfo['userid'],27,32)">
... link to Arcade ...
</if>

Then to prevent them simply typing the arcade.php (or whatever it is) link in directly, you'd need to hang a plugin on the first available hook in arcade.php, and do a similar test in PHP, and throw a polite error if they aren't in the appropriate groups.

I think this will work, although I have some nagging memory telling me that promotional groups may not work the same when it comes to is_member_of().

Either way, AFAIK, there is no generic mod which lets you do this. You'll have to roll your own set of customizations to achieve it.

-- hugh
Reply With Quote
  #7  
Old 02-10-2008, 11:53 PM
legionofangels's Avatar
legionofangels legionofangels is offline
 
Join Date: Mar 2007
Posts: 485
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That actually doesn't sound too bad.

On the issue of your nagging memory of that, can't I just use whatever code vBulletin does for the direct link to let's say...the admin forum?

I mean that line of code that locks someone out if they are not a member of the staff, mod or admins of your board, would be perfect for this...right?

--------------------

If i'm talking crazish again, if a normal member is handed the direct link to our forums staff forum, the system know's to lock them out, so why wouldn't it work if we used that line of code that does that to them?
Reply With Quote
  #8  
Old 02-11-2008, 01:19 AM
cheesegrits's Avatar
cheesegrits cheesegrits is offline
 
Join Date: May 2006
Posts: 500
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No, you can't use the code vB uses to control that Admin link, because that' is set up differently, in global.php, using user and UGP permissions, not group membership. Likewise forum access is controlled using forum permissions. And your original question is very specific about not using UGP's.

If all you want to do is control access by virtue of group membership, just use is_member_of().

-- uhgh
Reply With Quote
  #9  
Old 02-22-2008, 03:47 PM
Tact7626 Tact7626 is offline
 
Join Date: Feb 2007
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i'm glad the issue of conditionals was brought up here since i'm actually having trouble with it.

i'm working on putting together legion's ideas on his forum as he has described here. and what i at first thought was me not getting the conditional code correct i now think is an issue of promotions.

i found these two sites to help me with the conditional codes

http://forum.vbulletinsetup.com/f66/...list-2185.html

http://www.vbulletin.com/forum/showthread.php?t=131282

along with some other site which users $bbuserinfo which i don't think is listed at all in those two links. and confuses me cause how many ways to use usergroups are there? o_o i would guess this is because, if it's an "additional" group and not primary, the code is diffrent.

either way, i know that out of the 5 diffrent ways to do it, none worked which prompted me to check my promotion settings and i can't figure out what is wrong.

here's what i have as their settings

Quote:
Flash Tier 1 Additional Usergroups Posts 1000 30 333
Flash Tier 2 Additional Usergroups Posts 1000 30 444
Flash Tier 3 Additional Usergroups Posts 1000 30 555
(with 1000 being rep, 30 being days, and 333/444/555 being posts) i'm using posts only as the promotion strategy so everything else should be irrelevent.

i have run the scheduled task to update promotions manually like 3 times and i get no changes whatsoever. nobody is setup automatically for the additional groups. so all the testing i did to find the right conditionals was useless thus far. >.< i might just manually set myself up to get done with testing but now i feel i need to fix this while i'm on it.

would anyone have any idea as to what i'm doing wrong?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:03 PM.


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.03780 seconds
  • Memory Usage 2,241KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete