vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Help Modifying the Featured Threads Plugin (https://vborg.vbsupport.ru/showthread.php?t=149762)

DeadSeraphim 06-15-2007 05:14 AM

Help Modifying the Featured Threads Plugin
 
As I outlined in a previous post, I'm currently doing some (seemingly) more complex work than usually done with vB, and am now working on the Featured Threads portion of the sidebar. I've decided to edit the Featured Threads plugin and bend it to my will, but I'm having trouble when it comes to editting the output.

As you can see in the image in the previous post, it shows not only the poster and thread, but the date it was created.

Code:

$display .= "

<img src='images/skin/subforum_icon.gif' border='0'> <a href='showthread.php?t=$row[threadid]'>$row[title]</a> - <span class='smallfont'>$row[ftdescription] -
By $row[postusername]</span><br />";

I figure it's probably as easy as adding $row[date_created] or something, but I'm unfamiliar with the structure of vBulletin's tables, and have no way to check as the owner of the server hasn't been exactly forthcoming with allowing things like phpMyAdmin access. I could trawl through the code to find it, of course, but I don't even know where to look.

Assistance?

Dismounted 06-15-2007 07:21 AM

$row['dateline']

It is a Unix Timestamp, so you will have to convert it into a proper date, like so:
PHP Code:

date("DATEFORMAT"$row['timestamp']); 



All times are GMT. The time now is 05:56 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.00950 seconds
  • Memory Usage 1,714KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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