vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Miscellaneous Hacks - Adding subforums option for external.php (https://vborg.vbsupport.ru/showthread.php?t=253538)

DarkSoroush 11-11-2010 10:00 PM

Adding subforums option for external.php
 
1 Attachment(s)
Very quick and easy modification to add an option for including sub-forums in external.php
It is very odd why there isn't any trick in internet about this and no Mod.

Automatic Install:
Using xml file and try to Install Product.

Manual Install:
Go to plug-ins section. Click to add new plug-in. Then Select "external_start" as hook location, enter a name like "External Subforums Addon" or something, Then copy below code to "PHP Plug-in Code" and select Yes from "Enable Plug-In" then click Save.

PHP Code:

function GetSubs($fid){
    global 
$db;
    
$fidsq $db->query_read_slave("SELECT childlist
                                        FROM  " 
TABLE_PREFIX "forum
                                        WHERE forumid = "
.$db->escape_string($fid)."
    "
);
    if (
$fids $db->fetch_array($fidsq)){
        
$fids str_replace(',-1','',$fids['childlist']);
        return 
$fids;
    }else{
        return 
$fid;
    }
}

if (
$_REQUEST['subforums'] && $_REQUEST['subforums']==1){
    if (
$_REQUEST['forumids']){
        foreach (
explode(',',$_REQUEST['forumids']) as $fid){
            
$_REQUEST['forumids'] = trim(GetSubs($fid).','.$_REQUEST['forumids'],',');
        }
    }elseif(
$_REQUEST['forumid']){
        
$_REQUEST['forumids'] = GetSubs($_REQUEST['forumid']);
    }
}

if (
$_REQUEST['forumids']){
    
// quick way of getting the first value
    
$_REQUEST['forumid'] = intval($_REQUEST['forumids']);


How to use?
Only add subforums=1 at end of external.php address. For example:

mysite.com/forum/external.php?type=RSS2&forumids=115,67&subforums=1
Or:
mysite.com/forum/external.php?type=RSS2&forumid=16&lastpost=1&subfo rums=1
Or:
mysite.com/forum/external.php?type=RSS&forumid=67&subforums=1
Or:
mysite.com/forum/external.php?type=XML&forumids=115&lastpost=1&subf orums=1
etc ...

Advantages:
1. Comparing to manual adding of forum ids to address, It help users from missing new topics or posts when you make an other sub-forum but bookmarks of users are old.
2. And make better address for rss of course.
3. Also, You don't need any change of forums code to add updated rss links to your forum list. You can use a simple mod like "https://vborg.vbsupport.ru/showthread.php?t=211957". No need to install complete solution like this one: "https://vborg.vbsupport.ru/showthread.php?t=203358".


All times are GMT. The time now is 02:18 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.01265 seconds
  • Memory Usage 1,722KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete