aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-02-28 10:04:22 +0000
committerMario <mario@mariovavti.com>2024-02-28 10:04:22 +0000
commit96e831663357280de044553d52dbf33dbf1a7dbb (patch)
treea6f194f1af92e1f2d130b7d57f506685733fbc7d /include
parent37878bf0a35bcd0fc799892618a8b34ca0440c2c (diff)
downloadvolse-hubzilla-96e831663357280de044553d52dbf33dbf1a7dbb.tar.gz
volse-hubzilla-96e831663357280de044553d52dbf33dbf1a7dbb.tar.bz2
volse-hubzilla-96e831663357280de044553d52dbf33dbf1a7dbb.zip
some cloeanup after last commit
Diffstat (limited to 'include')
-rw-r--r--include/conversation.php28
1 files changed, 1 insertions, 27 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 498fefa99..79fe12d54 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -463,9 +463,6 @@ function conversation($items, $mode, $update, $page_mode = 'traditional', $prepa
$conv_responses = [
'like' => ['title' => t('Likes','title')],
'dislike' => ['title' => t('Dislikes','title')],
- 'agree' => ['title' => t('Agree','title')],
- 'disagree' => ['title' => t('Disagree','title')],
- 'abstain' => ['title' => t('Abstain','title')],
'attendyes' => ['title' => t('Attending','title')],
'attendno' => ['title' => t('Not attending','title')],
'attendmaybe' => ['title' => t('Might attend','title')],
@@ -883,13 +880,10 @@ function thread_author_menu($item, $mode = '') {
}
}
-
$contact_url = '';
$posts_link = '';
- $poke_link = '';
if($contact) {
- $poke_link = ((Apps::system_app_installed($local_channel, 'Poke')) ? z_root() . '/poke/?f=&c=' . $contact['abook_id'] : '');
if (isset($contact['abook_self']) && !intval($contact['abook_self']))
$contact_url = z_root() . '/connections#' . $contact['abook_id'];
$posts_link = z_root() . '/network/?cid=' . $contact['abook_id'];
@@ -943,18 +937,6 @@ function thread_author_menu($item, $mode = '') {
];
}
- if($poke_link) {
- $menu[] = [
- 'menu' => 'poke',
- 'title' => t('Poke'),
- 'icon' => 'fw',
- 'action' => '',
- 'href' => $poke_link,
- 'data' => '',
- 'class' => ''
- ];
- }
-
$args = [ 'item' => $item, 'mode' => $mode, 'menu' => $menu ];
call_hooks('thread_author_menu', $args);
@@ -1013,6 +995,7 @@ function builtin_activity_puller($item, &$conv_responses) {
}
if((activity_match($item['verb'], $verb)) && ($item['id'] != $item['parent'])) {
+
$name = (($item['author']['xchan_name']) ? $item['author']['xchan_name'] : t('Unknown'));
$moderate = ((intval($item['item_blocked']) === ITEM_MODERATED) ? '<a href="moderate/' . $item['id'] . '/approve" onclick="moderate_approve(' . $item['id'] . '); return false;" class="text-success pe-2" title="' . t('Approve this item') . '"><i class="fa fa-check" ></i></a><a href="moderate/' . $item['id'] . '/drop" onclick="moderate_drop(' . $item['id'] . '); return false;" class="text-danger pe-2" title="' . t('Delete this item') . '"><i class="fa fa-trash-o" ></i></a>' : '');
@@ -1581,15 +1564,6 @@ function get_response_button_text($v,$count) {
case 'attendmaybe':
return ['label' => tt('Undecided','Undecided',$count,'noun'), 'icon' => 'calendar-o', 'class' => 'attendmaybe'];
break;
- case 'agree':
- return ['label' => tt('Agree','Agrees',$count,'noun'), 'icon' => '', 'class' => ''];
- break;
- case 'disagree':
- return ['label' => tt('Disagree','Disagrees',$count,'noun'), 'icon' => '', 'class' => ''];
- break;
- case 'abstain':
- return ['label' => tt('Abstain','Abstains',$count,'noun'), 'icon' => '', 'class' => ''];
- break;
default:
return '';
break;