diff options
author | Friendika <info@friendika.com> | 2011-09-25 01:59:14 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-25 01:59:14 -0700 |
commit | 4846d114a84b0c7da64501ea89a635d24e403a1d (patch) | |
tree | 565923c7932ef7fffa4e22482fce48ddb9f133e4 /addon/widgets/widget_like.php | |
parent | 6a9e22550d82595c4341290ca26e3afc5fe6300f (diff) | |
download | volse-hubzilla-4846d114a84b0c7da64501ea89a635d24e403a1d.tar.gz volse-hubzilla-4846d114a84b0c7da64501ea89a635d24e403a1d.tar.bz2 volse-hubzilla-4846d114a84b0c7da64501ea89a635d24e403a1d.zip |
project fork
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 6927d4324..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 which 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# "; - } -} |