How-To Integrate Mod with forum search results
by
23 May 2009
Anyone who ever written a modification that was based on some custom access permissions (logic driven) should be aware about the "search" & "advanced search" pitfalls. Let me explain the "problems" of these issues: Say for example you wrote a mod that hide/deny certain thread/forum from user. Coder worked hard with mod coding, and made sure that user wouldnt see the link to that thread (either on forumhome, forumdisplay, thread listing, etc.). However, one need to remember the "search option & the fact that specific thread could be returned as part of search results shown to user. The problem consisted of 2 pitfalls:
Now that we recognize the problems, lets talk solutions Solution to problem 1: hook location: search_results_prebits Code Approach Explained: This hook will allow us to manipulate the results before sent to screen. the search results are located into array var $itemids. Common way to handle this, is by looping the array vars, and should we find any result line we wish to hide, we can simply unset it. Code Example: Lets assume we want to match for "forum id" & hide certain forum posts based on some logic behind it, thae hook plugin will look as follows: PHP Code:
foreach ($itemids as $key => $post)
Solution to problem 2: hook location: search_intro Walkthrough: understanding what's going on in the background : This hook will allow us to manipulate the data before showing the "advanced search" screen. looking at the "search_forums" template, you will see this code secton: PHP Code:
<select style="width:100%" name="forumchoice[]" size="13" multiple="multiple">
PHP Code:
eval('$searchforumbits .= "' . fetch_template('option') . '";');
PHP Code:
<option value="$optionvalue" class="$optionclass" $optionselected>$optiontitle</option>
Hence, what we understand from all the above, inside the $forumbits var i'll find block of text, consisting of <option> lines, one for each of the forums we have. Note since this is built inside the search.php (lines 2069-2100) we have no hook inside, allowing us to act during build of this list. Therefore our only option is to "retro" process this text block Code Example: My suggested code approach method is as follows: PHP Code:
$option_bits = explode("\r\n",$searchforumbits);
That's it Hope this small guide helped anyone that wanted to do some modification integration into search option on forum & didnt know where to place code or how. |
Similar Mods
vBulletin Blog New Blogs/Comments in Forum Search Results | vBulletin 3.7 Add-ons |