The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
Hi,
I was wondering if this is possible.. can i use this in a plugin Code:
<if condition="in_array($foruminfo[forumid], array(1,2,3,4,5,6))"> ![]() |
#2
|
||||
|
||||
![]()
Plugins use PHP code, not a wrapper like the one you've shown. Use this:
PHP Code:
|
#3
|
|||
|
|||
![]()
Hi Dismounted,
Do you know how i can display the child-forum id's? like if main forum id is 1 and the child-forums are 2,3,4,5 if (in_array($foruminfo['forumid'], array(1))) { $subforums.= "$child-forumid's from forumid 1"; } or is this not possible? Best regrads, |
#4
|
||||
|
||||
![]()
You'll have to query for the ids then display them. What are you trying to do exactly with this?
|
#5
|
|||
|
|||
![]()
i want to add the child-forumid automatically
like if put this in my template <if condition="in_array($foruminfo[forumid], array(1,$child-forumid))"> that $child-forumid add the child-forums id's I have in forum id 1 more then 150 child forums and i want to save some time to add them all in the "<if condition="in_array($foruminfo[forumid], array(1,2,3,4,etc,))"> Best regards |
#6
|
|||
|
|||
![]()
someone an idea how to do this?
|
#7
|
|||
|
|||
![]()
Hi Stickers,
That sounds pretty much exactly what I'm trying to do. I've used the Ultimate Side Columns hack I got here to put a right side column in my forum home pages. What I want is to display links in that column to information pertaining to the subforums of the parent forum. i.e. Mexico has 2 subforums: Acapulco and Cancun. When your're in the Mexico forum, I want to see links to the Travel Guides for Acapulco and Cancun in that right column. Then when those individual links are clicked, it will show hotel information etc specific to those areas. I've created a plugin that hooks into cache_templates. I can get it to display the childlist in an array as forumids. $childlist_title = $foruminfo['childlist']; foreach ($childlist_title AS $val) { // And then there is a piece of code that filters the ids of the main forum and the parent forum. if ($val == -1 OR $val == $foruminfo[forumid]) { "don't print"; } else { "print"; } } But this is where I've gotten hung up. I'm not really experienced with PHP but I try awfully hard. ![]() ![]() Thanks! PJ |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|