Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
Private Debates Details »»
Private Debates
Version: 1.1, by beebi beebi is offline
Developer Last Online: Jan 2009 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.6.0 Rating:
Released: 08-02-2006 Last Update: Never Installs: 115
DB Changes
 
No support by the author.

Features List:
  1. Allow members to add userIDs of debaters when creating a new thread so that only the thread owner and added members can reply, in addition of course to the Admin and mod of the forum
  2. Admin and mod can add, remove debaters after the thread creation
  3. When viewing the thread, it will show on top that this is a private debate between the thread owner and selected member names
  4. If no userIDs added, the thread will act normal, allowing permitted members to reply.
  5. It can be enabled per forum.
  6. UserIDs added are separated by space.
  7. Compatible with VB 3.5.4 and 3.6

Installation:
  1. Import product-tdebates.xml into your products be going to Plugin System -> Manage Products -> Add/Import Product.
  2. Enable it for any forum

Thanks go to Ghanem for kindly providing the English phrases translation

Nominate this for Mod o.t. Month

click install it you did installed this mod

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 08-04-2006, 12:14 AM
apokphp apokphp is offline
 
Join Date: Nov 2002
Posts: 440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent feature...especially considering that my site is a full on debate site: www.onlinedebate.net

However, it's currently working for RC3...is it also working fine for gold?
Reply With Quote
  #13  
Old 08-04-2006, 01:06 AM
Tyegurl's Avatar
Tyegurl Tyegurl is offline
 
Join Date: Mar 2006
Location: NY
Posts: 480
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice idea!! will put this in favorites and wait the need to arise
Reply With Quote
  #14  
Old 08-04-2006, 02:43 AM
bada_bing's Avatar
bada_bing bada_bing is offline
 
Join Date: Feb 2004
Location: Michigan
Posts: 1,698
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice hack,,, A couple request..

Usergroups permissions
usernames instead of userId's this is easier to understand for a typical user.
Reply With Quote
  #15  
Old 08-04-2006, 07:33 PM
SiriusBlack22 SiriusBlack22 is offline
 
Join Date: Jun 2006
Location: Florida
Posts: 133
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good hack, but there are loads of misspellings. I still love it though!

INSTALL!
Reply With Quote
  #16  
Old 08-04-2006, 07:34 PM
SiriusBlack22 SiriusBlack22 is offline
 
Join Date: Jun 2006
Location: Florida
Posts: 133
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh and bada_bing took the words out of my mouth.
Reply With Quote
  #17  
Old 08-05-2006, 06:48 PM
FleaBag's Avatar
FleaBag FleaBag is offline
 
Join Date: Dec 2001
Posts: 1,674
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just realised, you can ignore my last request. That is, unless I misunderstand.

Is it the mod of the forum who can view the Private Threads or is it a member of the moderator usergroup? If the former is true then I will just not assign a mod to the forum.
Reply With Quote
  #18  
Old 08-05-2006, 08:21 PM
cavyspirit cavyspirit is offline
 
Join Date: Jan 2004
Posts: 151
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I use vbSEO and you don't see the userid # ANYWHERE! I was about to install this and realized I have no way of telling my members how to get to the user number.

Any chance you are going to upgrade this real quick? I really really need user names and strongly need the ability to allow or block by user group.
Reply With Quote
  #19  
Old 08-05-2006, 08:22 PM
cavyspirit cavyspirit is offline
 
Join Date: Jan 2004
Posts: 151
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also, agree it would be ideal to have the thread originator or moderators add or remove people from the thread once it's going.

Those three things are pretty necessary to make this usable--which would be great!
Reply With Quote
  #20  
Old 08-10-2006, 01:00 PM
Ghanem's Avatar
Ghanem Ghanem is offline
 
Join Date: Aug 2004
Location: Bahrain
Posts: 122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

## Some replies are my own openion. ##

Quote:
Originally Posted by paul41598
Most people wouldnt be able to find a userid since its not default shown
This would solve it..
in templates postbit and postbit legacy, look for:
PHP Code:
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if> 
Add below
PHP Code:
<div>$vbphrase[userid]: $post[userid]</div
in template memberinfo, look for:
PHP Code:
<if condition="$userinfo['usertitle']"><div class="smallfont">$userinfo[usertitle]</div></if> 
add below
PHP Code:
<if condition="$userinfo['userid']"><div class="smallfont">$vbphrase[userid]: $userinfo[userid]</div></if> 
this will show the useID of the members, its much easier than copying usernames, specially concedring special charachters and non-English languages..

Quote:
Originally Posted by FleaBag
Is it possible for you to enable the thread starter the ability to add or remove debaters?
I think its better to be up to the mod or admin so the debater retreat if he is not strong enough to debate..

Quote:
Originally Posted by apokphp
However, it's currently working for RC3...is it also working fine for gold?
Yes it is

Quote:
Originally Posted by bada_bing
usernames instead of userId's this is easier to understand for a typical user
Added solution above..

Quote:
Originally Posted by bada_bing
but there are loads of misspellings.
My mistake

Quote:
Originally Posted by FleaBag
Is it the mod of the forum who can view the Private Threads or is it a member of the moderator usergroup? If the former is true then I will just not assign a mod to the forum
Every body can view the thread, only forum mode, admin and added debaters can reply, in addition of course to the thread starter..

Regards
Reply With Quote
  #21  
Old 08-10-2006, 11:00 PM
Phaedrus Phaedrus is offline
 
Join Date: Jul 2006
Location: Colorado
Posts: 617
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed and working... Thanks for the Userid upgrade on the fly!
Reply With Quote
Reply

Thread Tools

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 02: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.07470 seconds
  • Memory Usage 2,312KB
  • Queries Executed 25 (?)
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
  • (4)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete