Princeton
02-22-2006, 10:00 PM
A simple [HOWTO] to display latest threads on a custom page.
If you don't have GTCUSTOM PAGES (https://vborg.vbsupport.ru/showthread.php?threadid=108583) installed .. go download and upload product via Plugin Manager. You need GTCUSTOM PAGES to follow this article.
LETS GET STARTED
INSTRUCTIONS:
create 2 templates
add 1 phrase
add function to functions_gtcustom.php
edit goto.php
visit page at $vboptions/goto.php?section=newthreads
[B]1)__ CREATE 2 TEMPLATES
Create "custom_thread" template:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<tbody>
<tr>
<td class="tcat" colspan="5"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('gtcthreads')"><img id="collapseimg_gtcthreads" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_gtcthreads].gif" alt="" border="0" /></a>$vbphrase[header_title]</td>
</tr>
<tr class="thead">
<td> </td>
<td class="smallfont" align="$stylevar[left]" width="100%">$vbphrase[thread] / $vbphrase[thread_starter]</td>
<td class="smallfont" align="center" style="white-space:nowrap">$vbphrase[last_post]</td>
<td class="smallfont" align="center">$vbphrase[replies]</td>
<td class="smallfont" align="center">$vbphrase[views]</td>
</tr>
</tbody>
<tbody id="collapseobj_gtcthreads" style="$vbcollapse[collapseobj_gtcthreads]">
$threadrows
</tbody>
</table>
<br />
Create "custom_threadrow" template:
<tr>
<td class="alt2" align="center"><if condition="$show['threadicon']"><img class="inlineimg" src="$thread[iconpath]" alt="" border="0" title="" /> <else /> </if></td>
<td class="alt1"><a href="showthread.php?t=$thread[threadid]"><strong>$thread[title]</strong></a>
<div class="smallfont"> - by $thread[postusername]</div></td>
<td class="alt2" align="center"><div class="smallfont time" style="white-space:nowrap">$thread[lastpostdate] $thread[lastposttime]<br />by $thread[lastposter]</div></td>
<td class="alt1" align="center">$thread[replycount]</td>
<td class="alt2" align="center">$thread[views]</td>
</tr>
2)__ CREATE 1 PHRASE
Phrase Type: GTCustom Pages
Product: GTCustom Pages
Varname: gtcustom_newthreads_header
Text: Latest Threads
3)__ ADD FUNCTION TO functions_gtcustom.php
Copy the following function to functions_gtcustom.php (functions_gtcustom.php is included in GTCUSTOM PAGES product)
/* ==========[ PRINT LATEST THREAD ]===================================== */
/* ================================================== ==================== */
function print_gtcustom_newthreads()
{
global $vbulletin, $vbphrase, $threadrows;
$threadarray = $vbulletin->db->query_read("
SELECT thread.*, icon.title AS icontitle, icon.iconpath
FROM " . TABLE_PREFIX . "thread AS thread
LEFT JOIN " . TABLE_PREFIX . "icon AS icon ON(icon.iconid = thread.iconid)
WHERE
thread.visible = 1
ORDER BY dateline DESC
LIMIT 15");
while($thread = $vbulletin->db->fetch_array($threadarray))
{
if ($thread['iconid'])
{
// get icon from icon cache
$thread['iconpath'] = $vbulletin->iconcache["$thread[iconid]"]['iconpath'];
$thread['icontitle'] = $vbulletin->iconcache["$thread[iconid]"]['title'];
}
if ($thread['pollid'] != 0)
{
// show poll icon
$show['threadicon'] = true;
$thread['iconpath'] = "$stylevar[imgdir_misc]/poll_posticon.gif";
$thread['icontitle'] = $vbphrase['poll'];
}
else if ($thread['iconpath'])
{
// show specified icon
$show['threadicon'] = true;
}
else if (!empty($vbulletin->options['showdeficon']))
{
// show default icon
$show['threadicon'] = true;
$thread['iconpath'] = $vbulletin->options['showdeficon'];
$thread['icontitle'] = '';
}
else
{
// do not show icon
$show['threadicon'] = false;
$thread['iconpath'] = '';
$thread['icontitle'] = '';
}
$thread['lastpostdate'] = vbdate($vbulletin->options['dateformat'], $thread['lastpost'], 1);
$thread['lastposttime'] = vbdate($vbulletin->options['timeformat'], $thread['lastpost']);
eval('$threadrows .= "' . fetch_template('custom_threadrow') . '";');
}
unset($threadarray);
return $threadrows;
}
4)__ EDIT goto.php
FIND IN goto.php:
default;
eval('$HTML = "' . fetch_template('custom_mypage') . '";');
REPLACE WITH:
case 'newthreads';
$threadrows = print_gtcustom_newthreads();
eval('$HTML = "' . fetch_template('custom_thread') . '";');
break;
default;
eval('$HTML = "' . fetch_template('custom_mypage') . '";');
FIND:
if ($_REQUEST['section']=='sitemap')
{
$globaltemplates[] = 'custom_sitemap';
}
REPLACE WITH:
switch($_REQUEST['section'])
{
case 'sitemap';
$globaltemplates[] = 'custom_sitemap';
break;
case 'newthreads';
$specialtemplates[] = 'iconcache';
$globaltemplates = array_merge($globaltemplates, array('custom_thread', 'custom_threadrow'));
break;
}
5)__ DONE!
Now, go visit the page that you just created:
$vboptions[bburl]/goto.php?section=newthreads
Need any help? Contact me personally via private message.
NOTE:
All html code is valid XHTML.
This query will display all thread titles regardless of permission settings.
If you don't have GTCUSTOM PAGES (https://vborg.vbsupport.ru/showthread.php?threadid=108583) installed .. go download and upload product via Plugin Manager. You need GTCUSTOM PAGES to follow this article.
LETS GET STARTED
INSTRUCTIONS:
create 2 templates
add 1 phrase
add function to functions_gtcustom.php
edit goto.php
visit page at $vboptions/goto.php?section=newthreads
[B]1)__ CREATE 2 TEMPLATES
Create "custom_thread" template:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<tbody>
<tr>
<td class="tcat" colspan="5"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('gtcthreads')"><img id="collapseimg_gtcthreads" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_gtcthreads].gif" alt="" border="0" /></a>$vbphrase[header_title]</td>
</tr>
<tr class="thead">
<td> </td>
<td class="smallfont" align="$stylevar[left]" width="100%">$vbphrase[thread] / $vbphrase[thread_starter]</td>
<td class="smallfont" align="center" style="white-space:nowrap">$vbphrase[last_post]</td>
<td class="smallfont" align="center">$vbphrase[replies]</td>
<td class="smallfont" align="center">$vbphrase[views]</td>
</tr>
</tbody>
<tbody id="collapseobj_gtcthreads" style="$vbcollapse[collapseobj_gtcthreads]">
$threadrows
</tbody>
</table>
<br />
Create "custom_threadrow" template:
<tr>
<td class="alt2" align="center"><if condition="$show['threadicon']"><img class="inlineimg" src="$thread[iconpath]" alt="" border="0" title="" /> <else /> </if></td>
<td class="alt1"><a href="showthread.php?t=$thread[threadid]"><strong>$thread[title]</strong></a>
<div class="smallfont"> - by $thread[postusername]</div></td>
<td class="alt2" align="center"><div class="smallfont time" style="white-space:nowrap">$thread[lastpostdate] $thread[lastposttime]<br />by $thread[lastposter]</div></td>
<td class="alt1" align="center">$thread[replycount]</td>
<td class="alt2" align="center">$thread[views]</td>
</tr>
2)__ CREATE 1 PHRASE
Phrase Type: GTCustom Pages
Product: GTCustom Pages
Varname: gtcustom_newthreads_header
Text: Latest Threads
3)__ ADD FUNCTION TO functions_gtcustom.php
Copy the following function to functions_gtcustom.php (functions_gtcustom.php is included in GTCUSTOM PAGES product)
/* ==========[ PRINT LATEST THREAD ]===================================== */
/* ================================================== ==================== */
function print_gtcustom_newthreads()
{
global $vbulletin, $vbphrase, $threadrows;
$threadarray = $vbulletin->db->query_read("
SELECT thread.*, icon.title AS icontitle, icon.iconpath
FROM " . TABLE_PREFIX . "thread AS thread
LEFT JOIN " . TABLE_PREFIX . "icon AS icon ON(icon.iconid = thread.iconid)
WHERE
thread.visible = 1
ORDER BY dateline DESC
LIMIT 15");
while($thread = $vbulletin->db->fetch_array($threadarray))
{
if ($thread['iconid'])
{
// get icon from icon cache
$thread['iconpath'] = $vbulletin->iconcache["$thread[iconid]"]['iconpath'];
$thread['icontitle'] = $vbulletin->iconcache["$thread[iconid]"]['title'];
}
if ($thread['pollid'] != 0)
{
// show poll icon
$show['threadicon'] = true;
$thread['iconpath'] = "$stylevar[imgdir_misc]/poll_posticon.gif";
$thread['icontitle'] = $vbphrase['poll'];
}
else if ($thread['iconpath'])
{
// show specified icon
$show['threadicon'] = true;
}
else if (!empty($vbulletin->options['showdeficon']))
{
// show default icon
$show['threadicon'] = true;
$thread['iconpath'] = $vbulletin->options['showdeficon'];
$thread['icontitle'] = '';
}
else
{
// do not show icon
$show['threadicon'] = false;
$thread['iconpath'] = '';
$thread['icontitle'] = '';
}
$thread['lastpostdate'] = vbdate($vbulletin->options['dateformat'], $thread['lastpost'], 1);
$thread['lastposttime'] = vbdate($vbulletin->options['timeformat'], $thread['lastpost']);
eval('$threadrows .= "' . fetch_template('custom_threadrow') . '";');
}
unset($threadarray);
return $threadrows;
}
4)__ EDIT goto.php
FIND IN goto.php:
default;
eval('$HTML = "' . fetch_template('custom_mypage') . '";');
REPLACE WITH:
case 'newthreads';
$threadrows = print_gtcustom_newthreads();
eval('$HTML = "' . fetch_template('custom_thread') . '";');
break;
default;
eval('$HTML = "' . fetch_template('custom_mypage') . '";');
FIND:
if ($_REQUEST['section']=='sitemap')
{
$globaltemplates[] = 'custom_sitemap';
}
REPLACE WITH:
switch($_REQUEST['section'])
{
case 'sitemap';
$globaltemplates[] = 'custom_sitemap';
break;
case 'newthreads';
$specialtemplates[] = 'iconcache';
$globaltemplates = array_merge($globaltemplates, array('custom_thread', 'custom_threadrow'));
break;
}
5)__ DONE!
Now, go visit the page that you just created:
$vboptions[bburl]/goto.php?section=newthreads
Need any help? Contact me personally via private message.
NOTE:
All html code is valid XHTML.
This query will display all thread titles regardless of permission settings.