vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   vBadvanced CMPS + Latest Topics + Non VB .php files (https://vborg.vbsupport.ru/showthread.php?t=71991)

SaN-DeeP 11-21-2004 10:03 AM

vBadvanced CMPS + Latest Topics + Non VB .php files
 
Hi Guys,
I am impressed by the way VB CMPS Latest Topics Display an example is shown on vbadvanced.com.

I would like to know how can i display the same on non vbulletin php pages ? and also control various properties for same. ?

Original Hack Thread: https://vborg.vbsupport.ru/showthread.php?t=65797

Code for latesttopics.php file from the above hack:
Code:

<?php
// ++=========================================================================++
// || vBadvanced CMPS 1.0.0                                                                                                  ||
// || ? 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved          ||
// || This file may not be redistributed in whole or significant part.                ||
// || http://vbadvanced.com                                                                                                  ||
// ++ ========================================================================++
// ######################### Latest Forum Topics #########################
if ($vba_options['portal_threads_maxthreads'])
{
 $inforums = '';
 if ($vba_options['portal_threads_forumids'])
 {
  if (!empty($forumperms))
  {
  $inforums = array();
  $threadsforums = explode(',', $vba_options['portal_threads_forumids']);
  foreach ($threadsforums AS $tforum)
  {
        if (!in_array($tforum, $forumperms))
        {
        $inforums[] = $tforum;
        }
  }
  if (!empty($inforums))
  {
        $inforums = implode(',', $inforums);
  }
  }
  else
  {
  $inforums = $vba_options['portal_threads_forumids'];
  }
  if ($inforums)
  {
  $inforums = 'AND thread.forumid IN (' . $inforums . ')';
  }
 }
 $foruminfo['allowratings'] = $vba_options['portal_threads_showrating'];
 $show['lastpost'] = $vba_options['portal_threads_lastpost'];
 if ($vba_options['portal_threads_showsubscribed'] AND $bbuserinfo['userid'])
 {
  $query['subfields'] = ', NOT ISNULL(subscribethread.subscribethreadid) AS subscribed';
  $query['subjoin'] = 'LEFT JOIN ' . TABLE_PREFIX . 'subscribethread AS subscribethread ON (subscribethread.threadid = thread.threadid AND subscribethread.userid = ' . $bbuserinfo['userid'] . ')';
 }
 if ($vba_options['portal_threads_showpreview'] AND $vboptions['threadpreview'])
 {
  $query['previewfields'] = ', post.pagetext AS preview';
  $query['previewjoin'] = 'LEFT JOIN ' . TABLE_PREFIX . 'post AS post ON (post.postid = thread.firstpostid)';
 }
 if ($vba_options['portal_threads_showforum'])
 {
  $query['forumfields'] = ',thread.forumid, forum.title AS forumtitle';
  $query['forumjoin'] = 'LEFT JOIN ' . TABLE_PREFIX . 'forum AS forum ON (thread.forumid = forum.forumid)';
 }
 if ($vba_options['portal_threads_showicon'])
 {
  $query['iconfields'] = ', thread.iconid AS threadiconid, iconpath AS threadiconpath';
  $query['iconjoin'] = 'LEFT JOIN ' . TABLE_PREFIX . 'icon USING (iconid)';
 }
  $threads = $DB_site->query("
        SELECT
        " . iif($vba_options['portal_threads_showrating'], 'IF(votenum >= ' . $vboptions['showvotes'] . ', votenum, 0) AS votenum, IF(votenum >= ' . $vboptions['showvotes'] . ' AND votenum != 0, votetotal / votenum, 0) AS voteavg,') . "
        thread.threadid, thread.title, thread.replycount, postusername, postuserid, thread.dateline AS postdateline, IF(views <= thread.replycount, thread.replycount+1, views) AS views, thread.lastposter, thread.lastpost, pollid
        $query[iconfields]
  $query[forumfields]
  $query[previewfields]
  $query[subfields]
  FROM " . TABLE_PREFIX . "thread as thread
  $query[iconjoin]
  $query[forumjoin]
  $query[previewjoin]
  $deljoin
  $query[subjoin]
  WHERE open <> '10' AND thread.visible = 1 $iforumperms $inforums $notdeleted
  ORDER BY lastpost DESC
  LIMIT $vba_options[portal_threads_maxthreads]
 ");
  while ($thread = $DB_site->fetch_array($threads))
  {
  if (strlen($thread['title']) > $vba_options['portal_threads_maxchars'] AND $vba_options['portal_threads_maxchars'])
  {
  $thread['title'] = fetch_trimmed_title($thread['title'], $vba_options['portal_threads_maxchars']);
  }
  $thread = process_thread_array($thread, '', $vba_options['portal_threads_showicon']);
  $getbgrow = getrowcolor();
  eval('$threadbits .= "' . fetch_template('adv_portal_latesttopicbits') . '";');
  }
 eval('$home[$mods[\'modid\']][\'content\'] = "' . fetch_template('adv_portal_latesttopics') . '";');
  $DB_site->free_result($threads);
  unset($thread, $threadbits, $foruminfo, $query, $inforums);
}
?>

Regards,
Sandy...

AN-net 11-21-2004 12:18 PM

well its not too hard:) you can just include that file into your page and use it

SaN-DeeP 11-23-2004 04:04 PM

Quote:

Originally Posted by AN-net
well its not too hard:) you can just include that file into your page and use it

AN-NET i am sorry, I forgot the basics now :(

Please help

Regards,

SaN-DeeP 12-14-2004 01:55 PM

bumping back to get attention.

Regards,

SaN-DeeP 01-04-2005 04:20 PM

i wonder if this is possible from anyone ??
:)

Tigga 01-04-2005 05:20 PM

Quote:

Originally Posted by AN-net
well its not too hard:) you can just include that file into your page and use it

Not really... You also need to require global.php, replace the $vba_option variables and hardcode the values, plus probably change a bit of code to get it away from the moudle system in vBa.


All times are GMT. The time now is 01:34 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02175 seconds
  • Memory Usage 1,737KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete