diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-07-11 02:19:13 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-07-11 02:19:13 +0000 |
commit | 255304d87a14d8a61c2fa987b03f31dbd4f493e2 (patch) | |
tree | 2762f03ad0454aee0881ff2916f8ade3aa36dc51 /phpBB/includes | |
parent | 2cabdbebc3797c6b20b97dc5dc6ad57a43923fa2 (diff) | |
download | forums-255304d87a14d8a61c2fa987b03f31dbd4f493e2.tar forums-255304d87a14d8a61c2fa987b03f31dbd4f493e2.tar.gz forums-255304d87a14d8a61c2fa987b03f31dbd4f493e2.tar.bz2 forums-255304d87a14d8a61c2fa987b03f31dbd4f493e2.tar.xz forums-255304d87a14d8a61c2fa987b03f31dbd4f493e2.zip |
Split is half done... don't try and use it though its current b0rked :)
git-svn-id: file:///svn/phpbb/trunk@627 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 27d980ccb4..2402f5efca 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -184,6 +184,43 @@ function make_jumpbox() return($boxstring); } +function make_forum_box($box_name, $default_forum = -1) +{ + global $db; + + $limit_forums = ""; + + $sql = "SELECT forum_id, forum_name + FROM ".FORUMS_TABLE." + ORDER BY cat_id, forum_order"; + if(!$q_forums = $db->sql_query($sql)) + { + message_die(GENERAL_ERROR, "Couldn't obtain forums information.", "", __LINE__, __FILE__, $sql); + } + $total_forums = $db->sql_numrows($q_forums); + $forum_rows = $db->sql_fetchrowset($q_forums); + + $boxstring = '<select name="'.$box_name.'">'; + if($total_forums) + { + for($y = 0; $y < $total_forums; $y++) + { + $name = stripslashes($forum_rows[$y]['forum_name']); + $boxstring .= "<option value=\"".$forum_rows[$y]['forum_id']."\""; + if($forum_rows[$y]['forum_id'] == $default_forum) + { + $boxstring .= " SELECTED"; + } + $boxstring .= ">$name</option>\n"; + } + } + else + { + $boxstring .= "<option value=\"-1\">-- ! No Forums ! --</option>\n"; + } + + return($boxstring); +} // // Initialise user settings on page load function init_userprefs($userdata) |