aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-07-07 14:02:58 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-07-07 14:02:58 +0200
commit9dfd798368b404a8491d54bcb8111b3f90b1aaf3 (patch)
tree0fb3283fa2847eb11e001407043fc77f5a41c12c /include/conversation.php
parent5526afcf76c261ac8f276ffc4121861d6e175d70 (diff)
downloadvolse-hubzilla-9dfd798368b404a8491d54bcb8111b3f90b1aaf3.tar.gz
volse-hubzilla-9dfd798368b404a8491d54bcb8111b3f90b1aaf3.tar.bz2
volse-hubzilla-9dfd798368b404a8491d54bcb8111b3f90b1aaf3.zip
Add post type "event" to like/unlike localizated text
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php23
1 files changed, 21 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 09623ff74..6b52f51cd 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -17,7 +17,26 @@ function localize_item(&$item){
$author = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
$objauthor = '[url=' . $obj['author-link'] . ']' . $obj['author-name'] . '[/url]';
- $post_type = (($obj['resource-id']) ? t('photo') : t('status'));
+ switch($obj['verb']){
+ case 'http://activitystrea.ms/schema/1.0/post':
+ switch ($obj['object-type']){
+ case 'http://activitystrea.ms/schema/1.0/event':
+ $post_type = t('event');
+ break;
+ default:
+ $post_type = t('status');
+ }
+ break;
+ default:
+ if($obj['resource-id']){
+ $post_type = t('photo');
+ $m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
+ $rr['plink'] = $m[1];
+ } else {
+ $post_type = t('status');
+ }
+ }
+
$plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
switch($item['verb']){
@@ -779,4 +798,4 @@ function status_editor($a,$x, $notes_cid = 0) {
));
return $o;
-} \ No newline at end of file
+}