liquid_feedback_frontend
annotate model/contact.lua @ 127:4fb486bce608
add pageinator to issue view.
this "paginator" shows links to the prev/area/next issues that have the same
state then the current one. This helps a lot when inspecting new issues or voting.
The voting filter works a little bit different, as he also activtes the not_voted subfilter
because it is most likely only not voted issues are interessting to the user
this "paginator" shows links to the prev/area/next issues that have the same
state then the current one. This helps a lot when inspecting new issues or voting.
The voting filter works a little bit different, as he also activtes the not_voted subfilter
because it is most likely only not voted issues are interessting to the user
author | Daniel Poelzleithner <poelzi@poelzi.org> |
---|---|
date | Tue Oct 05 04:44:06 2010 +0200 (2010-10-05) |
parents | 3bfb2fcf7ab9 |
children | a9c6c11dd86c |
rev | line source |
---|---|
bsw/jbe@0 | 1 Contact = mondelefant.new_class() |
bsw/jbe@0 | 2 Contact.table = 'contact' |
bsw/jbe@0 | 3 Contact.primary_key = { "member_id", "other_member_id" } |
bsw/jbe@0 | 4 |
bsw/jbe@0 | 5 Contact:add_reference{ |
bsw/jbe@0 | 6 mode = 'm1', |
bsw/jbe@0 | 7 to = "Member", |
bsw/jbe@0 | 8 this_key = 'member_id', |
bsw/jbe@0 | 9 that_key = 'id', |
bsw/jbe@0 | 10 ref = 'member', |
bsw/jbe@0 | 11 } |
bsw/jbe@0 | 12 |
bsw/jbe@0 | 13 Contact:add_reference{ |
bsw/jbe@0 | 14 mode = 'm1', |
bsw/jbe@0 | 15 to = "Member", |
bsw/jbe@0 | 16 this_key = 'other_member_id', |
bsw/jbe@0 | 17 that_key = 'id', |
bsw/jbe@0 | 18 ref = 'other_member', |
bsw/jbe@0 | 19 } |
bsw/jbe@0 | 20 |
bsw/jbe@0 | 21 |
bsw/jbe@0 | 22 function Contact:by_pk(member_id, other_member_id) |
bsw/jbe@0 | 23 return self:new_selector() |
bsw/jbe@0 | 24 :add_where{ "member_id = ?", member_id } |
bsw/jbe@0 | 25 :add_where{ "other_member_id = ?", other_member_id } |
bsw/jbe@0 | 26 :optional_object_mode() |
bsw/jbe@0 | 27 :exec() |
bsw/jbe@0 | 28 end |