diff options
author | Olivier Migeot <olivier@migeot.org> | 2011-10-04 11:45:57 +0200 |
---|---|---|
committer | Olivier Migeot <olivier@migeot.org> | 2011-10-04 11:45:57 +0200 |
commit | 273594af62c960b5a52da5ec1cf6d6bd450415ba (patch) | |
tree | 5f79914d28c343f7642ecb13b99f9e0e3f5090a7 /addon/widgets/widget_like.php | |
parent | 1548449586f17c0ef9bfab0ffb16f2a495fc6082 (diff) | |
parent | dfd5cc57c2134067dc6229b8583b5e808f160004 (diff) | |
download | volse-hubzilla-273594af62c960b5a52da5ec1cf6d6bd450415ba.tar.gz volse-hubzilla-273594af62c960b5a52da5ec1cf6d6bd450415ba.tar.bz2 volse-hubzilla-273594af62c960b5a52da5ec1cf6d6bd450415ba.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'addon/widgets/widget_like.php')
-rw-r--r-- | addon/widgets/widget_like.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/addon/widgets/widget_like.php b/addon/widgets/widget_like.php deleted file mode 100644 index 9b54212a8..000000000 --- a/addon/widgets/widget_like.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -function like_widget_name() { - return "Shows likes"; -} -function like_widget_help() { - return "Search first item wich contains <em>KEY</em> and print like/dislike count"; -} - -function like_widget_args(){ - return Array("KEY"); -} - -function like_widget_content(&$a, $conf){ - $args = explode(",",$_GET['a']); - - if ($args[0]!=""){ - return " #TODO like/dislike count for item with <em>" .$args[0]. "</em> # "; - } else { - return " #TODO# "; - } -} |