4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: IzyB on July 19, 2005, 12:24:20 AM

Title: Top 10 (or more) images in ACP?
Post by: IzyB on July 19, 2005, 12:24:20 AM
Is there a Mod, or can one be made, that will show the Top 10 (or more) categories by hits, images by hits/rating/votes/downloads in the ACP? I'd like to be able to see more than the Top 5. I'd like to see the top 10-20:) Thanks!
Title: Re: Top 10 (or more) images in ACP?
Post by: V@no on July 19, 2005, 01:11:17 AM
admin/home.php:
Code: [Select]
$stats_limit = 5;
;)
Title: Re: Top 10 (or more) images in ACP?
Post by: IzyB on July 19, 2005, 01:16:39 AM
Thanks, once again, V@no!  :D
Title: Re: Top 10 (or more) images in ACP?
Post by: IzyB on July 19, 2005, 01:28:25 AM
Quick question V@no (or anyone else). I was just scanning through the code while changing the setting and was wondering what these do? I'm just wondering if these are something I may want to change for my own preference.

$per = intval($row['cat_hits'] / $max * 100);


$per = intval($row['image_hits'] / $max * 100);


$per = intval($row['image_rating'] / $max * 100);


$per = intval($row['image_votes'] / $max * 100);


$per = intval($row['image_downloads'] / $max * 100);






Title: Re: Top 10 (or more) images in ACP?
Post by: V@no on July 19, 2005, 02:52:45 AM
these are simple mathematic alghoritm to calculate procentage.