Thread: Toplist
View Single Post
  #747  
Old 06-06-2006, 04:20 AM
vonedaddy's Avatar
vonedaddy vonedaddy is offline
 
Join Date: Jan 2004
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP Code:
<?php 

/*======================================================================*\
|| #################################################################### ||
|| # Toplist Hack - Version 1.0.6                      # ||
|| # For vBulletin 3.5.3                          # ||
|| # ---------------------------------------------------------------- # ||
|| # By Derek Ivey (derek@modbb.com)                      # ||
|| # This hack may not be redistributed without my written permission # ||
|| #################################################################### ||
\*======================================================================*/

// ####################### SET PHP ENVIRONMENT ########################### 
error_reporting(E_ALL & ~E_NOTICE); 

// #################### DEFINE IMPORTANT CONSTANTS ####################### 
define('NO_REGISTER_GLOBALS'1); 
define('THIS_SCRIPT''toplist_dynamic_image');

// ######################### REQUIRE BACK-END ############################
// change the following to the path to your forum, with no ending slash.
chdir('/home/u1/vonaone/html/forum');
require_once(
'global.php'); 

// ####################################################################### 
// ######################## START MAIN SCRIPT ############################ 
// #######################################################################

// ############################## MISC STUFF #############################
header("Content-type: image/png"); 
$image imagecreatefrompng("images/toplist/buttons/dynamic/background.png");  
$color imagecolorallocate($image00255);
$font 3;

// ######################### GRAB INFO FROM DB ###########################
//$sql = "SELECT * FROM " . TABLE_PREFIX . "toplist_sites WHERE id='8'";
$sql "SELECT * FROM " TABLE_PREFIX "toplist_sites WHERE id='".$db->escape_string($_GET['id'])."'";
$sqlr $db->query_read($sql);
$sr $db->fetch_array($sqlr);

if (
$vbulletin->options['toplist_ranking_method'] == 0)
{    
    
$order '`in`';
}
else if (
$vbulletin->options['toplist_ranking_method'] == 1)
{
    
$order 'out';
}
else if (
$vbulletin->options['toplist_ranking_method'] == 2)
{
    
$order 'rating_average';
}
else
{
    
$order '`in`';
}

$rank1 "SELECT * FROM " TABLE_PREFIX "toplist_sites ORDER BY ".$order." DESC";
$rank2 $db->query_read($rank1);
$i 1;
while(
$rank3 $db->fetch_array($rank2))
{
    if (
$rank3['id'] == $_GET['id'])
    {
        
$rank $i;
    }
    else
    {
        
$i++;
    }
}

// ############################# CREATE IMAGE ############################
imagestring($image$font4428$rank$color);
imagestring($image$font5242$sr['in'], $color);
imagestring($image$font6256$sr['out'], $color);
imagestring($image$font5270$sr['rating_average'], $color);
imagestring($image2583$sr['name'], $color);

imagepng($image); 
imagedestroy($image);
?>
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01628 seconds
  • Memory Usage 1,805KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete