Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

[NEW PLUGTIN] RateStats v1

Quote Reply
[NEW PLUGTIN] RateStats v1
Hi,

I'm pleased to announce the latest plugin - RateStats.

Details: http://www.ultranerds.com/...sion/RateStats_L239/

About:

This plugin lets you show a bar-graph of any links ratings (see http://www.ultranerds.com/...sion/RateStats_L239/ for screenshots, and also there is a rating graph on that page, to show you exactly how it looks). Very simple to setup (a few template changes) , and then you have a pretty cool new feature added to your directory. A great addition for pretty much any directory :)

Price: $40

This plugin is part of both the ULTRA Package and ULTRA Package PRO deals.

As always, if you have any questions - please don't hesitate to email/PM me, and I'll get back to you as soon as possible.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] [NEW PLUGTIN] RateStats v1 In reply to
Hi Andy,
it's a nice plugin.
I think there is no way to include the old ratings?

Thanks
Matthias

Matthias
gpaed.de
Quote Reply
Re: [Andy] [NEW PLUGTIN] RateStats v1 In reply to
Wow.. very cool!
Quote Reply
Re: [Matthias70] [NEW PLUGTIN] RateStats v1 In reply to
Matthias70 wrote:
Hi Andy,
it's a nice plugin.
I think there is no way to include the old ratings?

Afraid not.

This is from /Links/Users/Rate.pm:

Code:
$clicktrack->insert({ LinkID => $id, IP => $ENV{REMOTE_ADDR}, ClickType => 'Rate', Created => \'NOW()' });

$rec->{Rating} = ($rec->{Rating} * $rec->{Votes} + $rating) / ++$rec->{Votes};
$links->update({ Rating => $rec->{Rating}, Votes => $rec->{Votes} }, { ID => $rec->{ID} });

All that does - is put an entry into the ClickTrack table - but this doesn't actually store the rating, so *impossible* to get previous ratings I'm afraid Frown

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!