diff options
author | friendica <info@friendica.com> | 2015-01-15 17:32:41 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-15 17:32:41 -0800 |
commit | 597b07e8cc40144abce63f0779d28c2dbc376a22 (patch) | |
tree | c6cb92ab968fa1099bba35c34cd621776855572c /mod/connedit.php | |
parent | e7932d97a25bf621082e93f47816a2a107a6d05f (diff) | |
download | volse-hubzilla-597b07e8cc40144abce63f0779d28c2dbc376a22.tar.gz volse-hubzilla-597b07e8cc40144abce63f0779d28c2dbc376a22.tar.bz2 volse-hubzilla-597b07e8cc40144abce63f0779d28c2dbc376a22.zip |
poco rating - add a test module for pulling out ratings
Diffstat (limited to 'mod/connedit.php')
-rw-r--r-- | mod/connedit.php | 18 |
1 files changed, 14 insertions, 4 deletions
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(); |