View Single Post
  #382  
Old 05-22-2007, 02:59 AM
lunitius lunitius is offline
 
Join Date: May 2007
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is my first stab at creating the modification I was asking for in my previous post. Basically I want the "select" box that is visible on the "write" page for wordpress to offer some more usability:

1. I wanted it to be larger (easy enough)
2. I wanted it to show the relationships between my top-level forums (Categories), my second level forums (Forums) and my third level forums (Sub-Forums) so that I could make intelligent decisions about which "forum" i wanted my post to be in.

Here is the modification. It is pretty raw right now but functional. I am working to factor it out to something a little more friendly to anyone by using the various api calls and variables presented from VB. Once I get the next cut done which should include these "upgrades" I will post it as well.

I attached a picture of what this looks like as well so you can get an idea of what I am talking about in case I am not explaining it clearly. See the attachments.

If you have any thoughts on how to do this better or more efficiently please let me know. I am decent coder but struggle with arrays:

This is a context diff of vbbridge.php
Code:
[root@abbadon plugins]# diff -b -B -c vbbridge.php.orig vbbridge.php
*** vbbridge.php.orig   Sun May 20 23:15:23 2007
--- vbbridge.php        Mon May 21 22:47:32 2007
***************
*** 421,440 ****
  function VB_Post_Form () {
  if (get_option('vbb_VBPOST')) {
  ?>
! <CENTER> Select Forum To Post To: <BR><select id="forumid" name="forumid" class="inputbox" size="5" >
! 
  <?php
  $wpdb =& $GLOBALS['wpdb'];
- $sql = "SELECT forumid, title FROM " . get_option('vbb_VBPRX') . "forum order by displayorder";
- $results = $wpdb->get_results($sql);
  
  
! foreach ($results as $forum) {
! if ($forum->forumid == get_option('vbb_VBFID')) { $selector = ' selected'; } else { $selector = ''; }
! echo "<option value=$forum->forumid$selector>$forum->title</option>\n";
  }
- 
  ?>
  </select>
  <BR>
  Or
--- 421,491 ----
  function VB_Post_Form () {
  if (get_option('vbb_VBPOST')) {
  ?>
! <!-- BEGIN EDIT BY ISI -->
! <CENTER> Select Forum To Post To: <BR><select id="forumid" name="forumid" class="inputbox" size="20" >
  <?php
  $wpdb =& $GLOBALS['wpdb'];
  
+ // connect to db (i couldn't figure out how to get this to work with the vbulletin api)
+ $conn = mysql_connect("localhost","dden","Oicu812");
+ mysql_select_db("dden_blog", $conn);
+ 
+ // create an array to keep track of what has been printed so we don't do it more than once
+ $printed = array();
+ 
+ // Get all top level (no parent) forums
+ $results = mysql_query("SELECT forumid, title, childlist FROM " . get_option('vbb_VBPRX') . "forum where parentid = '-1'");
+ while ($row = mysql_fetch_array($results, MYSQL_ASSOC))
+ {
+     // Check to see if the forumid has already been printed.
+     // If not print it and add it to the array of printed forumid to prevent duplicates
+     if (!array_search($row['forumid'], $printed))
+     {
+         echo "<option value=$row[forumid]>$row[title]</option>\n";
+         array_push($printed, $row['forumid']);
+     }
+ 
+     // Get the forumid and title of the children of the top level
+     $childlist = explode(",", $row['childlist']);
+     foreach ($childlist as $child1)
+     {
+         if ($child1 != $row['forumid'])
+         {
+             $child1_results = mysql_query("SELECT forumid, title, childlist FROM " . get_option('vbb_VBPRX') . "forum where forumid = '$child1'", $conn);
+             while ($child1_row = mysql_fetch_assoc($child1_results))
+             {
+                  // Check to see if the forumid has already been printed.
+                  // If not print it and add it to the array of printed forumid to prevent duplicates
+                 if (!array_search($child1_row['forumid'], $printed))
+                 {
+                     print "<option value=$child1_row[forumid]>--> $child1_row[title]</option>\n";
+                     array_push($printed, $child1_row['forumid']);
+                 }
+ 
+                // Get the forumid and title of the children of the first level for forum
+                $childlist2 = explode(",", $child1_row['childlist']);
+                foreach ($childlist2 as $child2)
+                {
+                    if ($child2 != $child1_row['forumid'])
+                    {
+                        $child2_results = mysql_query("SELECT forumid, title, childlist FROM " . get_option('vbb_VBPRX') . "forum where forumid = '$child2'", $conn);
+                        while ($child2_row = mysql_fetch_assoc($child2_results))
+                        {
+                            if (!array_search($child2_row['forumid'], $printed))
+                            {
+                                print "<option value=$child2_row[forumid]>&nbsp; &nbsp;----> $child2_row[title]</option>\n";
+                                array_push($printed, $child2_row['forumid']);
+                            }
+                        }
+                    }
+                }
+             }
+         }
  
!     }
  }
  ?>
+ <!-- END EDIT BY ISI -->
  </select>
  <BR>
  Or

Suggestions and comments welcome.

-- Isi
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01225 seconds
  • Memory Usage 1,800KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete