From 597b07e8cc40144abce63f0779d28c2dbc376a22 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Jan 2015 17:32:41 -0800 Subject: poco rating - add a test module for pulling out ratings --- mod/connedit.php | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'mod/connedit.php') diff --git a/mod/connedit.php b/mod/connedit.php index 87d5e9eca..c27f4588a 100644 --- a/mod/connedit.php +++ b/mod/connedit.php @@ -534,11 +534,21 @@ function connedit_content(&$a) { )); } + $poco_rating = get_config('system','poco_rating_enable'); + // if unset default to enabled + if($poco_rating === false) + $poco_rating = true; + + if($poco_rating) { + $rating = replace_macros(get_markup_template('rating_slider.tpl'),array( + '$min' => -10, + '$val' => (($contact['abook_rating']) ? $contact['abook_rating'] : 0), + )); + } + else { + $rating = false; + } - $rating = replace_macros(get_markup_template('rating_slider.tpl'),array( - '$min' => -10, - '$val' => (($contact['abook_rating']) ? $contact['abook_rating'] : 0), - )); $perms = array(); $channel = $a->get_channel(); -- cgit v1.2.3