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)
-   -   [AJAX] vBShout v2.0 (https://vborg.vbsupport.ru/showthread.php?t=93097)

ohgenki 05-13-2006 02:06 PM

Quote:

Originally Posted by DjTaz

i tried this, guess what happened? the shoutbox disappeared totally! :(

DjTaz 05-13-2006 04:25 PM

Quote:

Originally Posted by ohgenki
i tried this, guess what happened? the shoutbox disappeared totally! :(

I hadnt tried that hack myself as its not something i want, but the code looks to be sound from what i can see - are you sure you did it exactly as it said ?

Step 1 is important
1) Change the hook location for 'vBShout [Template Alteration]' to: forumdisplay_complete


and in Step 2 basically you change the code to this :

Code:


$Used    = 0;
$UsedArr = array();
$smilies = $db->query_read("
                SELECT smilieid, smilietext, smiliepath, smilie.title,
                imagecategory.title AS category
                FROM " . TABLE_PREFIX . "smilie AS smilie
                LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
                ORDER BY imagecategory.displayorder, smilie.displayorder
        ");
$Smilie_Build  = '';
$Total_Smilies = $db->num_rows($smilies);

if ($Total_Smilies > 0)
{
        while ($emo = $db->fetch_array($smilies))
        {
                if ($vbulletin->options['shout_smilies_show'] > 0)
                {
                        $Smilie_Cache[] = $emo;
                }
                else
                {
                        $Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$emo['smilietext'].'\')"><img src="'.$emo['smiliepath'].'" alt="'.$emo['title'].'" border="0" /></a> ';
                }
        }

        if ($vbulletin->options['shout_smilies_show'] > $Total_Smilies)
        {
                $vbulletin->options['shout_smilies_show'] = $Total_Smilies;
        }

        if ($vbulletin->options['shout_smilies_show'] > 0)
        {
                while ($Used < $vbulletin->options['shout_smilies_show'])
                {
                        $GetEmo = $Total_Smilies;
                        $GetEmo = rand(0, $GetEmo);

                        if (!in_array($GetEmo, $UsedArr) && $Smilie_Cache[$GetEmo])
                        {
                                $Used++;
                                $GetEmo = $Smilie_Cache[$GetEmo];
                                $Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$GetEmo['smilietext'].'\')"><img src="'.$GetEmo['smiliepath'].'" alt="'.$GetEmo['title'].'" border="0" /></a> ';
                        }
                }
        }
}
else
{
        $Smilie_Build = 'No Emoticons Available';
}

$Options_DropDown        = array(); // Items included will be parsed to create drop down menus
$DropDowns                = array(); // Completed constructed drop down menus

$Options_DropDown['font_selector']    = array('Default', 'Arial', 'Arial Black', 'Arial Narrow', 'Book Antiqua', 'Century Gothic', 'Comic Sans MS', 'Courier New', 'Fixedsys', 'Franklin Gothic Medium', 'Garamond', 'Georgia', 'Impact', 'Lucida Console', 'Lucida Sans Unicode', 'Microsoft Sans Serif', 'Palatino Linotype', 'System', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana');
$Options_DropDown['color_selector']  = array();
$Options_DropDown['color_selector'][] = 'Default';

$hex  = array();
$hex[] = '0';
$hex[] = '3';
$hex[] = '6';
$hex[] = '9';
$hex[] = 'C';
$hex[] = 'F';

for ($a = 0; $a < 6; $a++)
{
        for ($b = 0; $b < 6; $b++)
        {
                for ($c = 0; $c < 6; $c++)
                {
                        $Options_DropDown['color_selector'][] = '#' . $hex[$a].$hex[$a].$hex[$b].$hex[$b].$hex[$c].$hex[$c];
                }
        }
}

if (is_array($Options_DropDown))
{
        foreach ($Options_DropDown as $Menu => $Options)
        {
                $DropDowns[$Menu] = '';
                if (is_array($Options))
                {
                        foreach ($Options as $Selection)
                        {
                                if (preg_match("#^\#([a-z0-9]+)$#i", $Selection))
                                {
                                        $Extra = ' style="color:'.$Selection.';"';
                                }
                                else
                                {
                                        $Extra = '';
                                }

                                if ($Selection == 'Default')
                                {
                                        $Text = (($Menu == 'color_selector') ? 'Color' : 'Font Face') . ' [Default]';
                                }
                                else
                                {
                                        $Text = $Selection;
                                }

                                $DropDowns[$Menu] .= '<option value="'.$Selection.'"'.$Extra.'>'.$Text.'</option>' . "\n";
                        }
                }
        }
}

function isBanned($user)
{
        return (isBanned_Check($user['userid'], 'shout_banned_users') || isBanned_Check($user['usergroupid'], 'shout_banned_usergroups'));       
}

function isBanned_Check($bash, $against)
{
        global $vbulletin;
        return in_array($bash, iif($vbulletin->options[$against], explode(',', $vbulletin->options[$against]), array()));
}

if ($vbulletin->options['shout_banned_perms'] == 2 && isBanned($vbulletin->userinfo))
{
        $Shoutox = '';
}
else
{
        eval('$Shoutbox = "' . fetch_template('forumhome_vbshout') . '";');
}




if ($forumid ==1)
{
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace('$navbar', '$navbar' . ' $Shoutbox', $vbulletin->templatecache['FORUMDISPLAY']);
}

I changed the forumid to 1 on my forums and it works well when i clicked on Main Forum - but it wont work if you dont change the hook location ... well done to lierduh for that edit !

utw-Mephisto 05-13-2006 04:50 PM

Quote:

Originally Posted by DjTaz
I hadnt tried that hack myself as its not something i want, but the code looks to be sound from what i can see - are you sure you did it exactly as it said ?

Step 1 is important
1) Change the hook location for 'vBShout [Template Alteration]' to: forumdisplay_complete


and in Step 2 basically you change the code to this :

Code:


$Used    = 0;
$UsedArr = array();
$smilies = $db->query_read("
                SELECT smilieid, smilietext, smiliepath, smilie.title,
                imagecategory.title AS category
                FROM " . TABLE_PREFIX . "smilie AS smilie
                LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
                ORDER BY imagecategory.displayorder, smilie.displayorder
        ");
$Smilie_Build  = '';
$Total_Smilies = $db->num_rows($smilies);

if ($Total_Smilies > 0)
{
        while ($emo = $db->fetch_array($smilies))
        {
                if ($vbulletin->options['shout_smilies_show'] > 0)
                {
                        $Smilie_Cache[] = $emo;
                }
                else
                {
                        $Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$emo['smilietext'].'\')"><img src="'.$emo['smiliepath'].'" alt="'.$emo['title'].'" border="0" /></a> ';
                }
        }

        if ($vbulletin->options['shout_smilies_show'] > $Total_Smilies)
        {
                $vbulletin->options['shout_smilies_show'] = $Total_Smilies;
        }

        if ($vbulletin->options['shout_smilies_show'] > 0)
        {
                while ($Used < $vbulletin->options['shout_smilies_show'])
                {
                        $GetEmo = $Total_Smilies;
                        $GetEmo = rand(0, $GetEmo);

                        if (!in_array($GetEmo, $UsedArr) && $Smilie_Cache[$GetEmo])
                        {
                                $Used++;
                                $GetEmo = $Smilie_Cache[$GetEmo];
                                $Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$GetEmo['smilietext'].'\')"><img src="'.$GetEmo['smiliepath'].'" alt="'.$GetEmo['title'].'" border="0" /></a> ';
                        }
                }
        }
}
else
{
        $Smilie_Build = 'No Emoticons Available';
}

$Options_DropDown        = array(); // Items included will be parsed to create drop down menus
$DropDowns                = array(); // Completed constructed drop down menus

$Options_DropDown['font_selector']    = array('Default', 'Arial', 'Arial Black', 'Arial Narrow', 'Book Antiqua', 'Century Gothic', 'Comic Sans MS', 'Courier New', 'Fixedsys', 'Franklin Gothic Medium', 'Garamond', 'Georgia', 'Impact', 'Lucida Console', 'Lucida Sans Unicode', 'Microsoft Sans Serif', 'Palatino Linotype', 'System', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana');
$Options_DropDown['color_selector']  = array();
$Options_DropDown['color_selector'][] = 'Default';

$hex  = array();
$hex[] = '0';
$hex[] = '3';
$hex[] = '6';
$hex[] = '9';
$hex[] = 'C';
$hex[] = 'F';

for ($a = 0; $a < 6; $a++)
{
        for ($b = 0; $b < 6; $b++)
        {
                for ($c = 0; $c < 6; $c++)
                {
                        $Options_DropDown['color_selector'][] = '#' . $hex[$a].$hex[$a].$hex[$b].$hex[$b].$hex[$c].$hex[$c];
                }
        }
}

if (is_array($Options_DropDown))
{
        foreach ($Options_DropDown as $Menu => $Options)
        {
                $DropDowns[$Menu] = '';
                if (is_array($Options))
                {
                        foreach ($Options as $Selection)
                        {
                                if (preg_match("#^\#([a-z0-9]+)$#i", $Selection))
                                {
                                        $Extra = ' style="color:'.$Selection.';"';
                                }
                                else
                                {
                                        $Extra = '';
                                }

                                if ($Selection == 'Default')
                                {
                                        $Text = (($Menu == 'color_selector') ? 'Color' : 'Font Face') . ' [Default]';
                                }
                                else
                                {
                                        $Text = $Selection;
                                }

                                $DropDowns[$Menu] .= '<option value="'.$Selection.'"'.$Extra.'>'.$Text.'</option>' . "\n";
                        }
                }
        }
}

function isBanned($user)
{
        return (isBanned_Check($user['userid'], 'shout_banned_users') || isBanned_Check($user['usergroupid'], 'shout_banned_usergroups'));       
}

function isBanned_Check($bash, $against)
{
        global $vbulletin;
        return in_array($bash, iif($vbulletin->options[$against], explode(',', $vbulletin->options[$against]), array()));
}

if ($vbulletin->options['shout_banned_perms'] == 2 && isBanned($vbulletin->userinfo))
{
        $Shoutox = '';
}
else
{
        eval('$Shoutbox = "' . fetch_template('forumhome_vbshout') . '";');
}




if ($forumid ==1)
{
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace('$navbar', '$navbar' . ' $Shoutbox', $vbulletin->templatecache['FORUMDISPLAY']);
}

I changed the forumid to 1 on my forums and it works well when i clicked on Main Forum - but it wont work if you dont change the hook location ... well done to lierduh for that edit !

It finally works for me :) THANKS !!!!!

Sir_Yaro 05-13-2006 05:26 PM

Could you be so kind and fix word wrap code as well?
https://vborg.vbsupport.ru/showpost....postcount=1762

DjTaz 05-13-2006 05:45 PM

Quote:

Originally Posted by Sir_Yaro
Could you be so kind and fix word wrap code as well?
https://vborg.vbsupport.ru/showpost....postcount=1762

This isnt my hack and im only helping a few people out if i can - to have both the parsed version and the wordwrap would take too much of my time to figure out as i would have to go through all the code , and since i dont need this for myself , i wont be doing that.

danb00 05-13-2006 09:30 PM

well the shoutbox wont display on my forums and i cant find perms in usergroup perms manager....

Spin Doctor 05-14-2006 10:45 AM

Quote:

Originally Posted by Spin Doctor
hey guys i need to make it so my moderators cant edit the shoutbox, how do i do this???

Id like it so only my Smods and myself can, however it seems my mods have the same priverlages


still need help on this, i cant use my shoutbox untill someone helps me :(

S`ke 05-14-2006 03:09 PM

I can not see icon? How to fix?

Iain M 05-14-2006 06:46 PM

Quote:

Originally Posted by Spin Doctor
still need help on this, i cant use my shoutbox untill someone helps me :(

edit template forumhome_vbshout_archive_shout

find:
Code:

                                <if condition="$bbuserinfo[userid] == $Shout[s_by] OR can_moderate()">
                                        <span style='float:right'>
                                                [<a href='#' onclick='return Shout.Edit({$Shout['sid']})'>Edit</a> | <a href='#' onclick='return Shout.Delete({$Shout['sid']})'>Delete</a>]
                                        </span>
                                </if>

Replace with:
Code:

                                <if condition="$bbuserinfo[usergroupid] == 5 OR $bbuserinfo[usergroupid] == 6">
                                        <span style='float:right'>
                                                [<a href='#' onclick='return Shout.Edit({$Shout['sid']})'>Edit</a> | <a href='#' onclick='return Shout.Delete({$Shout['sid']})'>Delete</a>]
                                        </span>
                                </if>

thats for Super Mods and Admins to edit shouts :)

Sir_Yaro 05-14-2006 08:31 PM

thanks to that, this:
Code:

dlluuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuugieeeeeeeeeeeeeeee zaaaaaaaaaaaaaaaaaaaaapissssssssssssssssyyyyyyyyyyyy http://packages.ubuntu.com/cgi-bin/search_contents.pl?word=libborqt&searchmode=searchfiles&case=insensitive&version=breezy&arch=i386 dffffffffffffffffffffffffffffffff hhhhhhhhhhhhhhhhhhhhhhhhhhh
will look like that:


All times are GMT. The time now is 09:51 AM.

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.04123 seconds
  • Memory Usage 1,821KB
  • 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
  • (5)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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