diff options
-rwxr-xr-x | mod/contacts.php | 21 | ||||
-rwxr-xr-x | view/contacts-top.tpl | 5 |
2 files changed, 21 insertions, 5 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index d1136f542..418cddf17 100755 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -367,6 +367,7 @@ function contacts_content(&$a) { $blocked = false; $hidden = false; + $ignored = false; $all = false; $_SESSION['return_url'] = $a->query_string; @@ -383,6 +384,10 @@ function contacts_content(&$a) { $sql_extra = " AND `hidden` = 1 "; $hidden = true; } + elseif(($a->argc == 2) && ($a->argv[1] === 'ignored')) { + $sql_extra = " AND `readonly` = 1 "; + $ignored = true; + } else $sql_extra = " AND `blocked` = 0 "; @@ -398,7 +403,7 @@ function contacts_content(&$a) { array( 'label' => t('Unblocked Contacts'), 'url' => $a->get_baseurl() . '/contacts', - 'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets)) ? 'active' : '', + 'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored)) ? 'active' : '', ), array( @@ -406,11 +411,19 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl() . '/contacts/blocked', 'sel' => ($blocked) ? 'active' : '', ), + + array( + 'label' => t('Ignored Contacts'), + 'url' => $a->get_baseurl() . '/contacts/ignored', + 'sel' => ($ignored) ? 'active' : '', + ), + array( 'label' => t('Hidden Contacts'), 'url' => $a->get_baseurl() . '/contacts/hidden', 'sel' => ($hidden) ? 'active' : '', ), + ); $tab_tpl = get_markup_template('common_tabs.tpl'); @@ -419,8 +432,10 @@ function contacts_content(&$a) { - if($search) + if($search) { + $search_hdr = $search; $search = dbesc($search.'*'); + } $sql_extra .= ((strlen($search)) ? " AND MATCH `name` AGAINST ('$search' IN BOOLEAN MODE) " : ""); if($nets) @@ -441,7 +456,7 @@ function contacts_content(&$a) { '$header' => t('Contacts') . (($nets) ? ' - ' . network_to_name($nets) : ''), '$tabs' => $t, '$total' => $r[0]['total'], - '$search' => $search, + '$search' => $search_hdr, '$desc' => t('Search your contacts'), '$finding' => (strlen($search) ? '<h4>' . t('Finding: ') . "'" . $search . "'" . '</h4>' : ""), '$submit' => t('Find'), diff --git a/view/contacts-top.tpl b/view/contacts-top.tpl index 09421a1d3..fca3efd54 100755 --- a/view/contacts-top.tpl +++ b/view/contacts-top.tpl @@ -2,8 +2,6 @@ $finding -$tabs - <div id="contacts-search-wrapper"> <form id="contacts-search-form" action="$cmd" method="get" > <span class="contacts-search-desc">$desc</span> @@ -13,5 +11,8 @@ $tabs </div> <div id="contacts-search-end"></div> +$tabs + + |