Log in

View Full Version : Parentlist array


mescalin
05-04-2012, 07:48 AM
Hello,

I'm trying to construct a very basic plugin but i couldnt manage to use an array for parentlist field in new posts.

Can you give me an example to do that? I want to write a conditional for forumid=15 and all its subforums without adding all subforum ids one by one using parentlist field.

Thanks..

kh99
05-04-2012, 09:59 AM
You give very few details of what you want to do (such as hook location, etc), but if you're talking about the forum parentlist, then there is also a childlist that contains the ids of a forum's children.

mescalin
05-04-2012, 12:05 PM
Currently i use this conditional in newpost complete.

if (in_array($foruminfo['forumid'], array(1,2,3..........etc)))

However, if i use forum id i need to write all forumids under a category one by one. I would like to write a conditional that uses main forum category id so i dont need to write all forum ids.

kh99
05-04-2012, 12:12 PM
Try something like:


if (in_array($foruminfo['forumid'], split(',',$vbulletin->forumcache[$categoryid]['childlist'])))

mescalin
05-04-2012, 12:42 PM
I tried smth like that but didn't work. Probably i couldnt construct the conditional with a specific categoryid.

if ( $vbulletin->forumcache[$categoryid] == 48 AND in_array($foruminfo['forumid'], split(',',$vbulletin->forumcache[$categoryid]['childlist'])))



Also i wonder if that conditional works if it's not a category but a regular forum with many subforums under it.

kh99
05-04-2012, 12:52 PM
Sorry, that's my fault. There is no variable $categoryid, that was just an example. For instance if you want to check if the current forum is a child of forum 15, then you'd do this:

if (in_array($foruminfo['forumid'], split(',',$vbulletin->forumcache[15]['childlist'])))


I should also mention that each forum is in its own childlist, so if you didn't want to include forum 15 in your condition then you'd have to check for that (although if 15 is a non-posting forum then it won't matter).

mescalin
05-04-2012, 01:04 PM
Thank you! That worked perfectly.

It's geat to have experts as you around here..