Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons

Reply
 
Thread Tools
Mass PM Social Group Members Details »»
Mass PM Social Group Members
Version: 1.1, by WhaLberg WhaLberg is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Social Group and Album Enhancements - Version: 3.8.x Rating:
Released: 12-26-2008 Last Update: 12-26-2008 Installs: 145
Uses Plugins Auto-Templates
Translations  
No support by the author.

I have coded this addon for the users requested on this thread.

This products lets forum administrators and group founders send mass pm to the group members. Do not forget to enable via AdminCP -> vBulletin Options -> vBulletin Options -> Mass PM Social Group Members. Option to send the PM to users who don't wish to receive private messages is only available to the forum administrators. I have tested it on vBulletin 3.7.x and it works fine.

Please don't be afraid to post any problem that you face.

Enjoy!

Download Now

File Type: xml product-mass_pm_social_group.xml (9.4 KB, 813 views)

Screenshots

File Type: png masspmlink.png (1.8 KB, 0 views)
File Type: png masspmpmpage.png (35.8 KB, 0 views)

Show Your Support

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

Comments
  #52  
Old 03-11-2009, 09:43 AM
KURTZ KURTZ is offline
 
Join Date: Nov 2006
Location: Italy
Posts: 2,257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

we need an improvement about the uncached templates ...
Reply With Quote
  #53  
Old 03-17-2009, 05:43 AM
KURTZ KURTZ is offline
 
Join Date: Nov 2006
Location: Italy
Posts: 2,257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i've got a fix for the uncached templates (thanks to Lynne )

Go in the ACP ---> Plugin & Products ---> Plugin Manager ---> Mass PM Social Group Members - Cache Template (EDIT)

and put the following code at the end ... this cache the templates ... however there is another trouble in this hack ... when you select to send a PM to the users the 'Community' Link doesn't work ...


PHP Code:
if(THIS_SCRIPT == 'group'

$globaltemplates array_merge($globaltemplates, array( 
'editor_clientscript''editor_css''editor_jsoptions_font''editor_jsoptions_size''editor_toolbar_on''socialgroups_masspm')); 

Reply With Quote
  #54  
Old 03-17-2009, 07:39 AM
rainyleaves rainyleaves is offline
 
Join Date: Mar 2004
Posts: 227
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MoMan View Post
I've got a fix for the permissions error. Turned out to be a very sublte flaw in logic.

In the plugin, Find:

PHP Code:
if ($vbulletin->userinfo['userid'] != $groupinfo['creatoruserid'] OR $vbulletin->userinfo['usergroupid'] != 6)
        {
            
print_no_permission();
        } 
Replace:
PHP Code:
if ($vbulletin->userinfo['userid'] != $groupinfo['creatoruserid'] AND $vbulletin->userinfo['usergroupid'] != 6)
        {
            
print_no_permission();
        } 
Enjoy!
Wow!!! Thanks.
Reply With Quote
  #55  
Old 03-25-2009, 01:54 PM
Outrack Outrack is offline
 
Join Date: Aug 2007
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks KURTZ! I was waiting for someone to fix this before installing.
Reply With Quote
  #56  
Old 03-25-2009, 07:35 PM
shervin_dvb shervin_dvb is offline
 
Join Date: May 2008
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

dont Show Mass Pm like this in the navbar

https://vborg.vbsupport.ru/attachmen...6&d=1230341735
Reply With Quote
  #57  
Old 06-03-2009, 07:20 PM
SnowBot's Avatar
SnowBot SnowBot is offline
 
Join Date: Jul 2003
Location: Manchester UK
Posts: 631
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This isn't working for me for some reason. After I click on the "Mass PM Group Members" link, I only get the field to enter the title of the message, but the text editor is missing.

Any Ideas? I have tried to uninstall it and do a fresh install but NADA!
Reply With Quote
  #58  
Old 06-21-2009, 01:41 AM
john102774 john102774 is offline
 
Join Date: Aug 2008
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This Mod has a lot of potential, unfortunately I had to uninstall due to a lack of support.
Reply With Quote
  #59  
Old 06-26-2009, 04:05 AM
bjhuang bjhuang is offline
 
Join Date: Jul 2006
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

my fixed version:

Code:
[OPEN]
plugin: Mass PM Social Group Members - Cache Template

[REPLACE ALL]
if (THIS_SCRIPT=='group'&&$_REQUEST['do']=='masspm'&&$vbulletin->options['mass_pm_social_group_members'])
{
	$globaltemplates[] = 'socialgroups_masspm';
	$globaltemplates[] = 'editor_clientscript';
	$globaltemplates[] = 'editor_css';
	$globaltemplates[] = 'editor_jsoptions_font';
	$globaltemplates[] = 'editor_jsoptions_size';
	$globaltemplates[] = 'editor_toolbar_on';
}
[OPEN]
plugin: Mass PM Social Group Members - Mass PM

[FIND (two instances)]
if ($vbulletin->userinfo['userid'] != $groupinfo['creatoruserid'] OR $vbulletin->userinfo['usergroupid'] != 6)

[REPLACE]
if ($vbulletin->userinfo['userid'] != $groupinfo['creatoruserid'] AND $vbulletin->userinfo['usergroupid'] != 6) 

[FIND]
				  	  AND sgm.userid != " . $vbulletin->userinfo['userid'] . "

[REPLACE]
				  	  AND sgm.type = 'member'
[FIND]
if ($_POST['override'])

[REPLACE]
if ($_POST['override'] AND $vbulletin->userinfo['usergroupid'] == 6)

[OPEN]
Mass PM Social Group Members - Insert Link

[FIND]
if ($vbulletin->options['mass_pm_social_group_members'] AND $vbulletin->userinfo['userid'] == $group['creatoruserid'] OR $vbulletin->userinfo['usergroupid'] == 6)

[REPLACE]
if ($vbulletin->options['mass_pm_social_group_members'] AND ($vbulletin->userinfo['userid'] == $group['creatoruserid'] OR $vbulletin->userinfo['usergroupid'] == 6) )
Reply With Quote
  #60  
Old 07-18-2009, 11:49 PM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyone confirm this working?
Reply With Quote
  #61  
Old 08-14-2009, 05:06 AM
wmlvb's Avatar
wmlvb wmlvb is offline
 
Join Date: May 2008
Posts: 200
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I click mass pm and get blank white page! I would love this mod to work. Thanks
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 05:21 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.04674 seconds
  • Memory Usage 2,329KB
  • Queries Executed 26 (?)
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)bbcode_code
  • (3)bbcode_php
  • (1)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
  • (4)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
  • (4)postbit_attachment
  • (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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete