vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Private Message Workbench: Read, Search, Delete, Report and more (https://vborg.vbsupport.ru/showthread.php?t=95698)

Shazz 12-01-2006 10:04 PM

Quote:

Originally Posted by hnjco (Post 1129667)
Any chance of update?

Its been asked numerous times on this page ...

KoC 12-23-2006 09:21 AM

Please update this great vbulletin plugin. Many Forum Leaders need this plugin for the new version

COBRAws 01-25-2007 04:04 AM

I would gladly pay for this on 3.6.4

Black Widow 02-05-2007 07:41 AM

Quote:

Originally Posted by COBRAws (Post 1166824)
I would gladly pay for this on 3.6.4

Me too...

Black Widow 02-23-2007 07:35 PM

Marco, any update on this?

fluentdesigns 03-09-2007 04:54 PM

id donate for an update for 3.6

g00gl3r 03-12-2007 03:40 PM

Is there a version of this that would work for 3.6.1?

Shazz 03-12-2007 07:54 PM

With bugs yes..

T2DMan 03-24-2007 03:33 PM

just installed on a forum.
With the postbit_legacy template, I have used the following code for the template:

replaced
HTML Code:

report.php?$session[sessionurl]p=$post[postid]
with

HTML Code:

<if condition="THIS_SCRIPT=='private'">mh_pmwbrp_report.php?$session[sessionurl]do=reportpm&amp;pmid=$post[pmid]<else />report.php?$session[sessionurl]p=$post[postid]</if>
The same would probably be needed if you were coding for the normal postbit template.

T2DMan 03-24-2007 04:23 PM

The PM Workbench to field shows "array" when looking at pm's. So I have taken the code from vbulletin's private.php file and added to the specific file as per below:

admincp/mh_pmwbrd.php

replace
HTML Code:

        while ($pm = $vbulletin->db->fetch_array($pms))
        {

            $pmrow = array(
                    "<a href=\"mh_pmwbrd.php?do=readpmtext&amp;pmtextid=$pm[pmtextid]\">$pm[title]</a>"
                ,    $pm['fromusername']
                ,    (is_array(unserialize($pm['touserarray'])) ? implode(", ", array_values(unserialize($pm['touserarray']))) : null)
                , vbdate($vbulletin->options['dateformat'] . ', ' . $vbulletin->options['timeformat'], $pm['dateline'])
                ,    "<input type=\"checkbox\" name=\"action[" . $pm['pmtextid'] . "]\">"
                );
            print_cells_row($pmrow);
        }

with
HTML Code:

        while ($pm = $vbulletin->db->fetch_array($pms))
        {


            $cclist = array();
            $bcclist = array();
            $touser = unserialize($pm['touserarray']);
            foreach($touser AS $key => $item)
            {
                if (is_array($item))
                {
                    foreach($item AS $subkey => $subitem)
                    {
                        ${$key.'list'}[]=$subitem;
                    }
                }
                else
                {
                    $bcclist[]=$item;
                }
            }

            $pmrow = array(
                    "<a href=\"mh_pmwbrd.php?do=readpmtext&amp;pmtextid=$pm[pmtextid]\">$pm[title]</a>"
                ,    $pm['fromusername']
                ,    implode(", ",$bcclist).implode(", ",$cclist)
                , vbdate($vbulletin->options['dateformat'] . ', ' . $vbulletin->options['timeformat'], $pm['dateline'])
                ,    "<input type=\"checkbox\" name=\"action[" . $pm['pmtextid'] . "]\">"
                );
            print_cells_row($pmrow);
        }



All times are GMT. The time now is 07:42 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.01366 seconds
  • Memory Usage 1,746KB
  • 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
  • (4)bbcode_html_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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