diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-07-26 20:54:09 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-07-26 20:54:09 +0200 |
commit | f6142d18c43a77473dd4e2e3ea6c25154487ff2b (patch) | |
tree | fee8186729bae794f90e4961878103b8f0538eee | |
parent | 7f2b5a08c00531d4169cf80191480189b5163b8e (diff) | |
download | volse-hubzilla-f6142d18c43a77473dd4e2e3ea6c25154487ff2b.tar.gz volse-hubzilla-f6142d18c43a77473dd4e2e3ea6c25154487ff2b.tar.bz2 volse-hubzilla-f6142d18c43a77473dd4e2e3ea6c25154487ff2b.zip |
Provide connection status if status is "a-normal"
-rw-r--r-- | mod/connedit.php | 4 | ||||
-rwxr-xr-x | view/tpl/abook_edit.tpl | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/mod/connedit.php b/mod/connedit.php index d0cf71c73..b2f23ea7f 100644 --- a/mod/connedit.php +++ b/mod/connedit.php @@ -520,6 +520,7 @@ function connedit_content(&$a) { 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/block', 'sel' => (($contact['abook_flags'] & ABOOK_FLAG_BLOCKED) ? 'active' : ''), 'title' => t('Block (or Unblock) all communications with this connection'), + 'info' => (($contact['abook_flags'] & ABOOK_FLAG_BLOCKED) ? t('This connection is blocked!') : ''), ), 'ignore' => array( @@ -527,6 +528,7 @@ function connedit_content(&$a) { 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/ignore', 'sel' => (($contact['abook_flags'] & ABOOK_FLAG_IGNORED) ? 'active' : ''), 'title' => t('Ignore (or Unignore) all inbound communications from this connection'), + 'info' => (($contact['abook_flags'] & ABOOK_FLAG_IGNORED) ? t('This connection is ignored!') : ''), ), 'archive' => array( @@ -534,6 +536,7 @@ function connedit_content(&$a) { 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/archive', 'sel' => (($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) ? 'active' : ''), 'title' => t('Archive (or Unarchive) this connection - mark channel dead but keep content'), + 'info' => (($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) ? t('This connection is archived!') : ''), ), 'hide' => array( @@ -541,6 +544,7 @@ function connedit_content(&$a) { 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/hide', 'sel' => (($contact['abook_flags'] & ABOOK_FLAG_HIDDEN) ? 'active' : ''), 'title' => t('Hide or Unhide this connection from your other connections'), + 'info' => (($contact['abook_flags'] & ABOOK_FLAG_HIDDEN) ? t('This connection is hidden!') : ''), ), 'delete' => array( diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl index 93f52be8d..0a7cf2d4d 100755 --- a/view/tpl/abook_edit.tpl +++ b/view/tpl/abook_edit.tpl @@ -22,6 +22,15 @@ </div> <div class="section-content-wrapper-np"> {{if $notself}} + {{foreach $buttons as $b}} + {{if $b.info}} + <div class="section-content-danger-wrapper"> + <div> + {{$b.info}} + </div> + </div> + {{/if}} + {{/foreach}} <div class="section-content-info-wrapper"> <div> {{$addr_text}} <strong>'{{$addr}}'</strong> |