4images Forum & Community
4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started 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!
-
admin/home.php:
$stats_limit = 5;
;)
-
Thanks, once again, V@no! :D
-
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);
-
these are simple mathematic alghoritm to calculate procentage.