indicate on connections page if a federated connection from another network is unavailable from the current location

This commit is contained in:
zotlabs 2017-06-08 16:38:07 -07:00
parent 005baea319
commit 236b528552

View File

@ -243,7 +243,8 @@ class Connections extends \Zotlabs\Web\Controller {
((intval($rr['abook_archived'])) ? t('Archived') : ''), ((intval($rr['abook_archived'])) ? t('Archived') : ''),
((intval($rr['abook_hidden'])) ? t('Hidden') : ''), ((intval($rr['abook_hidden'])) ? t('Hidden') : ''),
((intval($rr['abook_ignored'])) ? t('Ignored') : ''), ((intval($rr['abook_ignored'])) ? t('Ignored') : ''),
((intval($rr['abook_blocked'])) ? t('Blocked') : '') ((intval($rr['abook_blocked'])) ? t('Blocked') : ''),
((intval($rr['abook_not_here'])) ? t('Not connected at this location') : '')
); );
foreach($status as $str) { foreach($status as $str) {
@ -261,7 +262,7 @@ class Connections extends \Zotlabs\Web\Controller {
'id' => $rr['abook_id'], 'id' => $rr['abook_id'],
'thumb' => $rr['xchan_photo_m'], 'thumb' => $rr['xchan_photo_m'],
'name' => $rr['xchan_name'], 'name' => $rr['xchan_name'],
'classes' => (intval($rr['abook_archived']) ? 'archived' : ''), 'classes' => ((intval($rr['abook_archived']) || intval($rr['abook_not_here'])) ? 'archived' : ''),
'link' => z_root() . '/connedit/' . $rr['abook_id'], 'link' => z_root() . '/connedit/' . $rr['abook_id'],
'deletelink' => z_root() . '/connedit/' . intval($rr['abook_id']) . '/drop', 'deletelink' => z_root() . '/connedit/' . intval($rr['abook_id']) . '/drop',
'delete' => t('Delete'), 'delete' => t('Delete'),