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

Re: [Paul] [NEW] Karma Plugin (well newish)

Quote Reply
Re: [Paul] [NEW] Karma Plugin (well newish) In reply to
Code:
sub {
my $user = shift;
my $post = $DB->table('User')->select( { user_id => $user }, 'user_posts' )->fetchrow;
my $karma = $DB->table('Post')->select( { user_id_fk => $user }, 'SUM(post_karma)' )->fetchrow;

return { user_post_title => $post + $karma };
}

I think you can add something like that as a global then add the tag in include_post_display.html - the tag would be:

<%calculate_karma($user_id_fk)%>

And then you can put <%user_post_title%> wherever you want. You can turn it into a name rather than a number with something like:

Code:
<%if user_post_title > '-50' and user_post_title < '1'%>
Naughy Boy
<%elsif user_post_title > '0' and user_post_title < '51'%>
Average Person
<%elsif user_post_title > '50' and user_post_title < '101'%>
Mr Nice Guy
<%elsif user_post_title > '100'>
Karma God
<%endif%>
Subject Author Views Date
Thread Post deleted by Paul Paul 12668 Aug 31, 2002, 12:44 PM
Thread Re: [Paul] [NEW] Karma Plugin (well newish)
backdream 12437 Aug 31, 2002, 9:19 PM
Thread Re: [backdream] [NEW] Karma Plugin (well newish)
Paul 12446 Sep 1, 2002, 2:39 AM
Post Re: [Paul] [NEW] Karma Plugin (well newish)
backdream 12417 Sep 1, 2002, 5:02 PM
Thread Re: [Paul] [NEW] Karma Plugin (well newish)
Paul 12424 Sep 2, 2002, 4:20 AM
Thread Re: [Paul] [NEW] Karma Plugin (well newish)
backdream 12431 Sep 2, 2002, 6:22 PM
Post Re: [backdream] [NEW] Karma Plugin (well newish)
backdream 12382 Sep 2, 2002, 6:52 PM
Post Re: [Paul] [NEW] Karma Plugin (well newish)
backdream 12406 Sep 3, 2002, 5:13 PM
Thread Re: [Paul] [NEW] Karma Plugin (well newish)
backdream 12384 Sep 4, 2002, 1:31 AM
Post Re: [backdream] [NEW] Karma Plugin (well newish)
backdream 12320 Sep 10, 2002, 5:11 PM
Thread Re: [Paul] [NEW] Karma Plugin (well newish)
Jag 12304 Sep 21, 2002, 4:51 AM
Thread Re: [Jag] [NEW] Karma Plugin (well newish)
hoefti 12235 Sep 21, 2002, 5:44 AM
Post Re: [hoefti] [NEW] Karma Plugin (well newish)
Jag 12270 Sep 21, 2002, 9:12 AM
Thread Re: [Jag] [NEW] Karma Plugin (well newish)
Paul 12319 Sep 21, 2002, 9:33 AM
Thread Re: [Paul] [NEW] Karma Plugin (well newish)
Jag 12308 Sep 21, 2002, 10:36 AM
Thread Re: [Jag] [NEW] Karma Plugin (well newish)
Paul 12264 Sep 21, 2002, 11:32 AM
Post Re: [Paul] [NEW] Karma Plugin (well newish)
shiner 12210 Oct 8, 2002, 1:07 PM
Thread Re: [Paul] [NEW] Karma Plugin (well newish)
shiner 12213 Oct 9, 2002, 8:44 AM
Thread Re: [shiner] [NEW] Karma Plugin (well newish)
Jag 12186 Oct 9, 2002, 9:37 AM
Post Re: [Jag] [NEW] Karma Plugin (well newish)
shiner 12144 Oct 9, 2002, 2:24 PM