home *** CD-ROM | disk | FTP | other *** search
- <?php
- /***************************************************************************
- * links.php
- * -----------
- * MOD add-on page. Contains GPL code copyright of phpBB group.
- * Author: OOHOO < webdev@phpbb-tw.net >
- * Author: Stefan2k1 and ddonker from www.portedmods.com
- * Author: CRLin from http://mail.dhjh.tcc.edu.tw/~gzqbyr/
- * Demo: http://phpbb-tw.net/
- * Version: 1.0.X - 2002/03/22 - for phpBB RC serial, and was named Related_Links_MOD
- * Version: 1.1.0 - 2002/04/25 - Re-packed for phpBB 2.0.0, and renamed to Links_MOD
- * Version: 1.2.0 - 2003/06/15 - Enhanced and Re-packed for phpBB 2.0.4
- * Version: 1.2.1 - 2003/10/15 - Enhanced by CRLin
- * Version: 1.2.2 - 2004/05/10 - Enhanced by CRLin
- ***************************************************************************/
-
- /***************************************************************************
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- ***************************************************************************/
-
- define('IN_PHPBB', true);
-
- $phpbb_root_path = "./";
- include($phpbb_root_path . 'extension.inc');
- include($phpbb_root_path . "common.$phpEx");
-
- //
- // Start session management
- //
- $userdata = session_pagestart($user_ip, PAGE_LINKS);
- init_userprefs($userdata);
- require($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main_link.' . $phpEx);
-
- //
- // Count and forwrad
- //
- if($HTTP_GET_VARS['action'] == "go" && $HTTP_GET_VARS['link_id'])
- {
- $link_id = $HTTP_GET_VARS['link_id'];
- // Secure check
- if(is_numeric($link_id))
- {
- $sql = "SELECT link_id, link_url, last_user_ip
- FROM " . LINKS_TABLE . "
- WHERE link_id = '$link_id'
- AND link_active = 1";
-
- if($result = $db->sql_query($sql))
- {
- $row = $db->sql_fetchrow($result);
- if($link_url = $row['link_url'])
- {
- if($user_ip != $row['last_user_ip'])
- {
- // Update
- $sql = "UPDATE " . LINKS_TABLE . "
- SET link_hits = link_hits + 1, last_user_ip = '$user_ip'
- WHERE link_id = '$link_id'";
- $result = $db->sql_query($sql);
- }
-
- // Forward to website
- // header("Location: $link_url");
- echo '<script>location.replace("' . $link_url . '")</script>';
- exit;
- }
- }
- }
- }
-
- // Output the basic page
- $page_title = $lang['Site_links'];
- include('includes/page_header.'.$phpEx);
-
- //
- // Define initial vars
- //
- $start = ( isset($HTTP_GET_VARS['start']) ) ? $HTTP_GET_VARS['start'] : 0;
-
- if ( isset($HTTP_POST_VARS['t']) || isset($HTTP_GET_VARS['t']) )
- {
- $t = ( isset($HTTP_POST_VARS['t']) ) ? $HTTP_POST_VARS['t'] : $HTTP_GET_VARS['t'];
- } else {
- $t = 'index';
- }
- if ( isset($HTTP_POST_VARS['cat']) || isset($HTTP_GET_VARS['cat']) )
- {
- $cat = ( isset($HTTP_POST_VARS['cat']) ) ? $HTTP_POST_VARS['cat'] : $HTTP_GET_VARS['cat'];
- } else {
- $cat = 1;
- }
- if ( isset($HTTP_POST_VARS['search_keywords']) || isset($HTTP_GET_VARS['search_keywords']) )
- {
- $search_keywords = ( isset($HTTP_POST_VARS['search_keywords']) ) ? $HTTP_POST_VARS['search_keywords'] : $HTTP_GET_VARS['search_keywords'];
- } else {
- $search_keywords = '';
- }
-
- switch($t)
- {
- case 'pop':
- case 'new':
- $tmp = "links_popnew.tpl";
- break;
- case 'search':
- $tmp = "links_search.tpl";
- break;
- case 'sub_pages':
- $tmp = "links_body.tpl";
- break;
- default:
- $tmp = "links_index.tpl";
- }
-
- $template->set_filenames(array(
- 'body' => $tmp
- ));
-
- //
- // Get Link Config
- //
- $sql = "SELECT *
- FROM ". LINK_CONFIG_TABLE;
- if(!$result = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, "Could not query Link config information", "", __LINE__, __FILE__, $sql);
- }
- while( $row = $db->sql_fetchrow($result) )
- {
- $link_config_name = $row['config_name'];
- $link_config_value = $row['config_value'];
- $link_config[$link_config_name] = $link_config_value;
- $linkspp=$link_config['linkspp'];
- }
-
- if($link_config['lock_submit_site'] == 0)
- {
- // display submit site
- $template->assign_block_vars('lock', array());
-
- if(!$userdata['session_logged_in'])
- {
- $template->assign_block_vars('lock.logout', array());
- }
-
- if($userdata['session_logged_in'])
- {
- $template->assign_block_vars('lock.submit', array());
- }
- }
-
- if($link_config['allow_no_logo'])
- {
- $tmp = $lang['Link_logo_src'];
- }
- else
- {
- $tmp = $lang['Link_logo_src1'];
- }
-
- $template->assign_vars(array(
- 'U_LINK_REG' => append_sid("link_register.$phpEx"),
- 'L_LINK_REGISTER_RULE' => $lang['Link_register_rule'],
- 'L_LINK_REGISTER_GUEST_RULE' => $lang['Link_register_guest_rule'],
- 'L_LINK_TITLE' => $lang['Link_title'],
- 'L_LINK_DESC' => $lang['Link_desc'],
- 'L_LINK_URL' => $lang['Link_url'],
- 'L_LINK_LOGO_SRC' => $tmp,
- 'L_PREVIEW' => $lang['Links_Preview'],
- 'L_LINK_CATEGORY' => $lang['Link_category'],
- 'L_PLEASE_ENTER_YOUR' => $lang['Please_enter_your'],
- 'L_LINK_REGISTER' => $lang['Link_register'],
- 'L_SITE_LINKS' => $lang['Site_links'],
- 'L_LINK_US' => $lang['Link_us'] . $board_config['sitename'],
- 'L_LINK_US_EXPLAIN' => sprintf($lang['Link_us_explain'], $board_config['sitename']),'L_SUBMIT' => $lang['Submit'],
- 'U_SITE_LINKS' => append_sid("links.$phpEx"),
- 'L_LINK_CATEGORY' => $lang['Link_category'],
- 'U_SITE_SEARCH' => append_sid("links.$phpEx?t=search"),
- 'U_SITE_TOP' => append_sid("links.$phpEx?t=pop"),
- 'U_SITE_NEW' => append_sid("links.$phpEx?t=new"),
- 'U_SITE_LOGO' => $link_config['site_logo'],
- 'LINK_US_SYNTAX' => str_replace(" ", " ", sprintf(htmlentities($lang['Link_us_syntax'], ENT_QUOTES), $link_config['site_url'], $link_config['site_logo'], $link_config['width'],$link_config['height'], $board_config['sitename'])),
- 'LINKS_HOME' => $lang['Links_home'],
- 'L_SEARCH_SITE' => $lang['Search_site'],
- 'L_DESCEND_BY_HITS' => $lang['Descend_by_hits'],
- 'L_DESCEND_BY_JOINDATE' => $lang['Descend_by_joindate'],
- 'L_LINK_JOINED' => $lang['Joined'],
- 'L_LINK_HITS' => $lang['link_hits'],
- 'L_LINK_SUBMITER' => $lang['link_submiter']
- ));
-
- if ($t=='pop' || $t=='new')
- {
- if ($t=='pop')
- {
- $template->assign_vars(array(
- 'L_LINK_TITLE1' => $lang['Descend_by_hits']
- ));
- }
- else
- {
- $template->assign_vars(array(
- 'L_LINK_TITLE1' => $lang['Descend_by_joindate']
- ));
- }
-
- //
- // Grab link categories
- //
- $sql = "SELECT cat_id, cat_title FROM " . LINK_CATEGORIES_TABLE . " ORDER BY cat_order";
-
- if(!$result = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, 'Could not query link categories list', '', __LINE__, __FILE__, $sql);
- }
-
- while($row = $db->sql_fetchrow($result))
- {
- $link_categories[$row['cat_id']] = $row['cat_title'];
- }
-
- //
- // Grab links
- //
- $sql = "SELECT *
- FROM " . LINKS_TABLE . " l, " . USERS_TABLE . " u
- WHERE link_active = 1 AND l.user_id = u.user_id
- ORDER BY link_hits DESC, link_id DESC
- LIMIT $start, $linkspp";
- if ($t == 'new')
- {
- $sql = "SELECT *
- FROM " . LINKS_TABLE . " l, " . USERS_TABLE . " u
- WHERE link_active = 1 AND l.user_id = u.user_id
- ORDER BY link_joined DESC, link_id DESC
- LIMIT $start, $linkspp";
- }
-
- if(!$result = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, 'Could not query links list', '', __LINE__, __FILE__, $sql);
- }
-
- if ( $row = $db->sql_fetchrow($result) )
- {
- $i = 0;
- do
- {
- // if (empty($row['link_logo_src'])) $row['link_logo_src'] = 'images/links/no_logo88a.gif';
- if ($link_config['display_links_logo'])
- {
- if ($row['link_logo_src'])
- {
- $tmp = "<a href=".append_sid("links.$phpEx?action=go&link_id=" . $row['link_id'])." alt='".$row['link_desc']."' target='_blank'><img src='".$row['link_logo_src']."' alt='".$row['link_title']."' width='".$link_config['width']."' height='".$link_config['height']."' border='0' /></a>";
- }
- else
- {
- $tmp = "<a href=".append_sid("links.$phpEx?action=go&link_id=" . $row['link_id'])." alt='".$row['link_desc']."' target='_blank'><img src='"."images/links/weblink_88x31.png"."' alt='".$row['link_title']."' width='".$link_config['width']."' height='".$link_config['height']."' border='0' /></a>";
- // $tmp = $lang['No_Logo_img'];
- }
- }
- else
- {
- $tmp = $lang['No_Display_Links_Logo'];
- }
-
- $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
- $user_id = $row['user_id'];
- $username = $row['username'];
-
- $template->assign_block_vars("linkrow", array(
- 'ROW_CLASS' => $row_class,
- 'LINK_URL' => append_sid("links.$phpEx?action=go&link_id=" . $row['link_id']),
- 'LINK_TITLE' => $row['link_title'],
- 'LINK_DESC' => $row['link_desc'],
- 'LINK_LOGO_SRC' => $row['link_logo_src'],
- 'LINK_LOGO' => $tmp,
- 'LINK_CATEGORY' => $link_categories[$row['link_category']],
- 'LINK_JOINED' => create_date($lang['DATE_FORMAT'], $row['link_joined'], $board_config['board_timezone']),
- 'LINK_HITS' => $row['link_hits'],
- 'U_LINK_USER' => ($user_id != ANONYMOUS ? ("<a href=\"profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id\" target=\"_blank\">$username</a>") : $username)
- ));
- $i++;
- }
- while ( $row = $db->sql_fetchrow($result) );
- }
-
- //
- // Pagination
- //
- $sql = "SELECT count(*) AS total
- FROM " . LINKS_TABLE . "
- WHERE link_active = 1";
-
- if ( !($result = $db->sql_query($sql)) )
- {
- message_die(GENERAL_ERROR, 'Could not query links number', '', __LINE__, __FILE__, $sql);
- }
-
- if ( $row = $db->sql_fetchrow($result) )
- {
- $total_links = $row['total'];
- $pagination = generate_pagination("links.$phpEx?t=$t", $total_links, $linkspp, $start). ' ';
- }
- else
- {
- $pagination = ' ';
- $total_links = 10;
- }
-
- //
- // Link categories dropdown list
- //
- foreach($link_categories as $cat_id => $cat_title)
- {
- $link_cat_option .= "<option value=\"$cat_id\">$cat_title</option>";
- }
-
-
- $template->assign_vars(array(
- 'PAGINATION' => $pagination,
- 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $linkspp ) + 1 ), ceil( $total_links / $linkspp )),
- 'L_GOTO_PAGE' => $lang['Goto_page'],
-
- 'LINK_CAT_OPTION' => $link_cat_option
- ));
-
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
- exit;
- }
-
- if ($t=='sub_pages')
- {
- if ( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
- {
- $mode = ( isset($HTTP_POST_VARS['mode']) ) ? $HTTP_POST_VARS['mode'] : $HTTP_GET_VARS['mode'];
- }
- else
- {
- $mode = 'link_joined';
- }
-
- if(isset($HTTP_POST_VARS['order']))
- {
- $sort_order = ($HTTP_POST_VARS['order'] == 'ASC') ? 'ASC' : 'DESC';
- }
- else if(isset($HTTP_GET_VARS['order']))
- {
- $sort_order = ($HTTP_GET_VARS['order'] == 'ASC') ? 'ASC' : 'DESC';
- }
- else
- {
- $sort_order = 'DESC';
- }
-
- //
- // Links sites sorting
- //
- $mode_types_text = array($lang['link_hits'], $lang['Joined'], $lang['Link_title'], $lang['Link_desc']);
- $mode_types = array('link_hits', 'link_joined', 'link_title', 'link_desc');
-
- $select_sort_mode = '<select name="mode">';
- for($i = 0; $i < count($mode_types_text); $i++)
- {
- $selected = ( $mode == $mode_types[$i] ) ? ' selected="selected"' : '';
- $select_sort_mode .= '<option value="' . $mode_types[$i] . '"' . $selected . '>' . $mode_types_text[$i] . '</option>';
- }
- $select_sort_mode .= '</select>';
-
- $select_sort_order = '<select name="order">';
- if($sort_order == 'ASC')
- {
- $select_sort_order .= '<option value="ASC" selected="selected">' . $lang['Sort_Ascending'] . '</option><option value="DESC">' . $lang['Sort_Descending'] . '</option>';
- }
- else
- {
- $select_sort_order .= '<option value="ASC">' . $lang['Sort_Ascending'] . '</option><option value="DESC" selected="selected">' . $lang['Sort_Descending'] . '</option>';
- }
- $select_sort_order .= '</select>';
-
- $select_sort_order = $select_sort_order . '<input type="hidden" name="t" value="' . $t .'">';
- $select_sort_order = $select_sort_order . '<input type="hidden" name="cat" value="' . $cat .'">';
-
- $template->assign_vars(array(
- 'L_SEARCH_SITE' => $lang['Search_site'],
- 'L_SELECT_SORT_METHOD' => $lang['Select_sort_method'],
- 'L_ORDER' => $lang['Order'],
- 'L_SORT' => $lang['Sort'],
- 'U_SITE_LINKS_CAT' => append_sid("links.$phpEx?t=$t&cat=$cat"),
- 'S_MODE_SELECT' => $select_sort_mode,
- 'S_ORDER_SELECT' => $select_sort_order
- ));
-
- //
- // Grab link categories
- //
- $sql = "SELECT cat_id, cat_title FROM " . LINK_CATEGORIES_TABLE . " WHERE cat_id = $cat";
-
- if(!$result = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, 'Could not query link categories list', '', __LINE__, __FILE__, $sql);
- }
-
- $row = $db->sql_fetchrow($result);
- $link_categories[$row['cat_id']] = $row['cat_title'];
- $template->assign_vars(array(
- 'LINK_CATEGORY' => $row['cat_title']
- ));
-
- //
- // Grab links
- //
- $sql = "SELECT l.*, u.username
- FROM " . LINKS_TABLE . " l, " . USERS_TABLE . " u
- WHERE l.link_active = 1 AND l.link_category = $cat AND l.user_id = u.user_id
- ORDER BY $mode $sort_order, l.link_id DESC
- LIMIT $start, $linkspp";
- if(!$result = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, 'Could not query links list', '', __LINE__, __FILE__, $sql);
- }
-
-
- if ( $row = $db->sql_fetchrow($result) )
- {
- $i = 0;
- do
- {
- //if (empty($row['link_logo_src'])) $row['link_logo_src'] = 'images/links/no_logo88a.gif';
- if ($link_config['display_links_logo'])
- {
- if ($row['link_logo_src'])
- {
- $tmp = "<a href=".append_sid("links.$phpEx?action=go&link_id=" . $row['link_id'])." alt='".$row['link_desc']."' target='_blank'><img src='".$row['link_logo_src']."' alt='".$row['link_title']."' width='".$link_config['width']."' height='".$link_config['height']."' border='0' /></a>";
- }
- else
- {
- $tmp = "<a href=".append_sid("links.$phpEx?action=go&link_id=" . $row['link_id'])." alt='".$row['link_desc']."' target='_blank'><img src='"."images/links/weblink_88x31.png"."' alt='".$row['link_title']."' width='".$link_config['width']."' height='".$link_config['height']."' border='0' /></a>";
- // $tmp = $lang['No_Logo_img'];
- }
- }
- else
- {
- $tmp = $lang['No_Display_Links_Logo'];
- }
-
- $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
- $user_id = $row['user_id'];
- $username = $row['username'];
-
- $template->assign_block_vars("linkrow", array(
- 'ROW_CLASS' => $row_class,
- 'LINK_URL' => append_sid("links.$phpEx?action=go&link_id=" . $row['link_id']),
- 'LINK_TITLE' => $row['link_title'],
- 'LINK_DESC' => $row['link_desc'],
- 'LINK_LOGO_SRC' => $row['link_logo_src'],
- 'LINK_LOGO' => $tmp,
- 'LINK_CATEGORY' => $link_categories[$row['link_category']],
- 'LINK_JOINED' => create_date($lang['DATE_FORMAT'], $row['link_joined'], $board_config['board_timezone']),
- 'LINK_HITS' => $row['link_hits'],
- 'U_LINK_USER' => ($user_id != ANONYMOUS ? ("<a href=\"profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id\" target=\"_blank\">$username</a>") : $username)
- ));
- $i++;
- }
- while ( $row = $db->sql_fetchrow($result) );
- }
-
- //
- // Pagination
- //
- $sql = "SELECT count(*) AS total
- FROM " . LINKS_TABLE . "
- WHERE link_active = 1 AND link_category = $cat";
-
- if ( !($result = $db->sql_query($sql)) )
- {
- message_die(GENERAL_ERROR, 'Could not query links number', '', __LINE__, __FILE__, $sql);
- }
-
- if ( $row = $db->sql_fetchrow($result) )
- {
- $total_links = $row['total'];
- $pagination = generate_pagination("links.$phpEx?t=$t&cat=$cat&mode=$mode&order=$sort_order", $total_links, $linkspp, $start). ' ';
- }
- else
- {
- $pagination = ' ';
- $total_links = 10;
- }
-
- //
- // Link categories dropdown list
- //
- foreach($link_categories as $cat_id => $cat_title)
- {
- $link_cat_option .= "<option value=\"$cat_id\">$cat_title</option>";
- }
-
- $template->assign_vars(array(
- 'PAGINATION' => $pagination,
- 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $linkspp ) + 1 ), ceil( $total_links / $linkspp )),
- 'L_GOTO_PAGE' => $lang['Goto_page'],
-
- 'LINK_CAT_OPTION' => $link_cat_option
- ));
-
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
- exit;
- }
-
- if ($t=='search')
- {
- if ( $search_keywords )
- {
- $search_keywords = trim(stripslashes($search_keywords));
- $link_title = $lang['Search_site'] . " » " . $search_keywords;
- $template->assign_vars(array(
- 'L_LINK_TITLE1' => $link_title,
- 'L_SEARCH_SITE_TITLE' => $lang['Search_site_title']
- ));
- }
- else
- {
- $template->assign_vars(array(
- 'L_LINK_TITLE1' => $lang['Search_site'],
- 'L_SEARCH_SITE_TITLE' => $lang['Search_site_title']
- ));
- $start = 0;
- }
- //
- // Grab link categories
- //
- $sql = "SELECT cat_id, cat_title FROM " . LINK_CATEGORIES_TABLE . " ORDER BY cat_order";
-
- if(!$result = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, 'Could not query link categories list', '', __LINE__, __FILE__, $sql);
- }
-
- while($row = $db->sql_fetchrow($result))
- {
- $link_categories[$row['cat_id']] = $row['cat_title'];
- }
-
- //
- // Grab links
- //
- if ( $search_keywords )
- {
- /*$sql = "SELECT * FROM " . LINKS_TABLE . "
- WHERE link_active = 1";*/
- $sql = "SELECT l.*, u.username
- FROM " . LINKS_TABLE . " l, " . USERS_TABLE . " u
- WHERE link_active = 1 AND l.user_id = u.user_id";
- $sql = $sql . " AND (link_title LIKE '%$search_keywords%' OR link_desc LIKE '% $search_keywords%') LIMIT $start, $linkspp";
-
- if(!$result = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, 'Could not query links list', '', __LINE__, __FILE__, $sql);
- }
-
- if ( $row = $db->sql_fetchrow($result) )
- {
- $i = 0;
- do
- {
- //if (empty($row['link_logo_src'])) $row['link_logo_src'] = 'images/links/no_logo88a.gif';
- if ($link_config['display_links_logo'])
- {
- if ($row['link_logo_src'])
- {
- $tmp = "<a href=".append_sid("links.$phpEx?action=go&link_id=" . $row['link_id'])." alt='".$row['link_desc']."' target='_blank'><img src='".$row['link_logo_src']."' alt='".$row['link_title']."' width='".$link_config['width']."' height='".$link_config['height']."' border='0' /></a>";
- }
- else
- {
- $tmp = "<a href=".append_sid("links.$phpEx?action=go&link_id=" . $row['link_id'])." alt='".$row['link_desc']."' target='_blank'><img src='"."images/links/weblink_88x31.png"."' alt='".$row['link_title']."' width='".$link_config['width']."' height='".$link_config['height']."' border='0' /></a>";
- // $tmp = $lang['No_Logo_img'];
- }
- }
- else
- {
- $tmp = $lang['No_Display_Links_Logo'];
- }
-
- $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
- $user_id = $row['user_id'];
- $username = $row['username'];
-
- $template->assign_block_vars("linkrow", array(
- 'ROW_CLASS' => $row_class,
- 'LINK_URL' => append_sid("links.$phpEx?action=go&link_id=" . $row['link_id']),
- 'LINK_TITLE' => $row['link_title'],
- 'LINK_DESC' => $row['link_desc'],
- 'LINK_LOGO_SRC' => $row['link_logo_src'],
- 'LINK_LOGO' => $tmp,
- 'LINK_CATEGORY' => $link_categories[$row['link_category']],
- 'LINK_JOINED' => create_date($lang['DATE_FORMAT'], $row['link_joined'], $board_config['board_timezone']),
- 'LINK_HITS' => $row['link_hits'],
- 'U_LINK_USER' => ($user_id != ANONYMOUS ? ("<a href=\"profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id\" target=\"_blank\">$username</a>") : $username)
- ));
- $i++;
- }
- while ( $row = $db->sql_fetchrow($result) );
- }
-
- //
- // Pagination
- //
- $sql = "SELECT count(*) AS total
- FROM " . LINKS_TABLE . "
- WHERE link_active = 1";
- $sql .= " AND (link_title LIKE '%$search_keywords%' OR link_desc LIKE '%$search_keywords %')";
-
- if ( !($result = $db->sql_query($sql)) )
- {
- message_die(GENERAL_ERROR, 'Could not query links number', '', __LINE__, __FILE__, $sql);
- }
-
- if ( $row = $db->sql_fetchrow($result) )
- {
- $total_links = $row['total'];
- $pagination = generate_pagination("links.$phpEx?t=$t&search_keywords=$search_keywords", $total_links, $linkspp, $start). ' ';
- }
- else
- {
- $pagination = ' ';
- $total_links = 10;
- }
- }
-
- //
- // Link categories dropdown list
- //
- foreach($link_categories as $cat_id => $cat_title)
- {
- $link_cat_option .= "<option value=\"$cat_id\">$cat_title</option>";
- }
-
- $template->assign_vars(array(
- 'PAGINATION' => $pagination,
- 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $linkspp ) + 1 ), ceil( $total_links / $linkspp )),
- 'L_GOTO_PAGE' => $lang['Goto_page'],
-
- 'LINK_CAT_OPTION' => $link_cat_option
- ));
-
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
- exit;
- }
-
- $template->assign_vars(array(
- 'FOLDER_IMG' => $images['folder']
- ));
-
- //
- // Grab link categories
- //
- $sql = "SELECT cat_id, cat_title FROM " . LINK_CATEGORIES_TABLE . " ORDER BY cat_order";
-
- if(!$result = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, 'Could not query link categories list', '', __LINE__, __FILE__, $sql);
- }
-
- //
- // Separate link categories into $catcol columns
- //
- $catnum = $db->sql_numrows($result);
- $catcol = 2;
- $num = intval($catnum/$catcol);
- if ($catnum % $catcol ) $num++;
- $template->assign_vars(array('LINK_WIDTH' => 100/$catcol));
- for( $i = 0;$i < $num; $i++)
- {
- $template->assign_block_vars('catcol', array());
- if ( ($catnum % $catcol) && ($i==$num-1) ) $catcol = $catnum % $catcol;
- for( $j = 0;$j < $catcol; $j++)
- {
- $row = $db->sql_fetchrow($result);
- $link_categories[$row['cat_id']] = $row['cat_title'];
- $sql = "SELECT link_category FROM " . LINKS_TABLE . "
- WHERE link_active = 1 AND link_category = ";
- $sql .= $row['cat_id'];
- if(!$linknum = $db->sql_query($sql))
- {
- message_die(GENERAL_ERROR, 'Could not query links list', '', __LINE__, __FILE__, $sql);
- }
- $template->assign_block_vars('catcol.linkrow', array(
- 'LINK_URL' => append_sid("links.$phpEx?t=sub_pages&cat=" . $row['cat_id']),
- 'LINK_TITLE' => $row['cat_title'],
- 'LINK_NUMBER' => $db->sql_numrows($linknum)
- )
- );
- }
- }
-
- //
- // Link categories dropdown list
- //
- foreach($link_categories as $cat_id => $cat_title)
- {
- $link_cat_option .= "<option value=\"$cat_id\">$cat_title</option>";
- }
-
- $template->assign_vars(array(
- 'LINK_CAT_OPTION' => $link_cat_option
- ));
-
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
-
- ?>