vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   The code To get a list of subscribed forums (https://vborg.vbsupport.ru/showthread.php?t=278817)

egysc 02-19-2012 10:45 AM

The code To get a list of subscribed forums
 
If I want to get a list of the subscribed Forums, What the code may look like ?
any Ideas?

--------------- Added [DATE]1329657144[/DATE] at [TIME]1329657144[/TIME] ---------------

I need To show That block like in the usercp in any other page for example index.php

kh99 02-20-2012 02:03 PM

You'd need to query the subscribeforum table to get records where the userid matches the user. That would get you a list of forum ids, so if you want the forum name you could use the $vbulletin->forumcache[] array.

egysc 02-26-2012 12:31 PM

I got the codes from the usercp.php file and from the usercp template , but it didn't work !?
Why?

kh99 02-26-2012 12:44 PM

You'd have to post exactly what you're trying to do.

egysc 02-26-2012 01:33 PM

I'm trying to show a list of the subscribed forums as a block in the vbadvanced script .

kh99 02-26-2012 02:12 PM

Well, you could try something like this:

Code:

$result = $vbulletin->db->query_slave("SELECT subscribeforum.forumid, forum.title FROM " . TABLE_PREFIX . "subscribeforum AS subscribeforum
LEFT JOIN " . TABLE_PREFIX . "forum AS forum ON (forum.forumid = subscribeforum.forumid)
WHERE userid = " . $vbulletin->userinfo['userid']);

while ($subscribed_forum = $vbulletin->db->fetch_array($result))
{
    $subscribed_forums .= '<a href="forumdisplay.php?f=' . $subscribed_forum['forumid'] . '">' . $subscribed_forum['title'] . '</a><br />';
}


I tried the query and I think it's correct, but I didn't test the code at all.

egysc 02-28-2012 03:35 PM

If the query works fine , How I can integrate it , I mean what to put in the template to display the query result ? as the cade from the usercp template didn't work with me .
Thanks For your time and effort .

kh99 02-28-2012 03:41 PM

You need to put that code into a plugin or a php file, then arrange for the resulting string to be displayed. I don't remember how to make a vbadvanced block so I can't tell you exactly.

Honourable 07-03-2012 01:57 PM

Hi

I added the code in a plugin under global_start and added $subscribed_forums in template

but the forum page shows internal error

BTW I use vbulletin 3.8.7

hope that I can find solution many thanks in advance


All times are GMT. The time now is 04:53 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.01515 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_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)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