3 require_once('include/Contact.php');
4 require_once('include/socgraph.php');
5 require_once('include/contact_selectors.php');
6 require_once('include/Scrape.php');
7 require_once('mod/proxy.php');
8 require_once('include/Photo.php');
10 function contacts_init(&$a) {
16 if(($a->argc == 2) && intval($a->argv[1])) {
17 $contact_id = intval($a->argv[1]);
18 $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
27 require_once('include/group.php');
28 require_once('include/contact_widgets.php');
30 if(! x($a->page,'aside'))
31 $a->page['aside'] = '';
34 $a->data['contact'] = $r[0];
35 $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
36 '$name' => $a->data['contact']['name'],
37 '$photo' => $a->data['contact']['photo'],
38 '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url']
44 if (isset($_GET['add']))
45 $follow_widget = follow_widget($_GET['add']);
47 $follow_widget = follow_widget();
50 if ($_GET['nets'] == "all")
53 $groups_widget .= group_side('contacts','group',false,0,$contact_id);
54 $findpeople_widget .= findpeople_widget();
55 $networks_widget .= networks_widget('contacts',$_GET['nets']);
56 $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array(
57 '$vcard_widget' => $vcard_widget,
58 '$follow_widget' => $follow_widget,
59 '$groups_widget' => $groups_widget,
60 '$findpeople_widget' => $findpeople_widget,
61 '$networks_widget' => $networks_widget
64 $base = $a->get_baseurl();
65 $tpl = get_markup_template("contacts-head.tpl");
66 $a->page['htmlhead'] .= replace_macros($tpl,array(
67 '$baseurl' => $a->get_baseurl(true),
71 $tpl = get_markup_template("contacts-end.tpl");
72 $a->page['end'] .= replace_macros($tpl,array(
73 '$baseurl' => $a->get_baseurl(true),
80 function contacts_batch_actions(&$a){
81 $contacts_id = $_POST['contact_batch'];
82 if (!is_array($contacts_id)) return;
84 $orig_records = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND `uid` = %d AND `self` = 0",
85 implode(",", $contacts_id),
90 foreach($orig_records as $orig_record) {
91 $contact_id = $orig_record['id'];
92 if (x($_POST, 'contacts_batch_update')) {
93 _contact_update($contact_id);
96 if (x($_POST, 'contacts_batch_block')) {
97 $r = _contact_block($contact_id, $orig_record);
98 if ($r) $count_actions++;
100 if (x($_POST, 'contacts_batch_ignore')) {
101 $r = _contact_ignore($contact_id, $orig_record);
102 if ($r) $count_actions++;
104 if (x($_POST, 'contacts_batch_archive')) {
105 $r = _contact_archive($contact_id, $orig_record);
106 if ($r) $count_actions++;
108 if (x($_POST, 'contacts_batch_drop')) {
109 _contact_drop($contact_id, $orig_record);
113 if ($count_actions>0) {
114 info ( sprintf( tt("%d contact edited.", "%d contacts edited", $count_actions), $count_actions) );
117 if(x($_SESSION,'return_url'))
118 goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
120 goaway($a->get_baseurl(true) . '/contacts');
125 function contacts_post(&$a) {
130 if ($a->argv[1]==="batch") {
131 contacts_batch_actions($a);
135 $contact_id = intval($a->argv[1]);
139 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
144 if(! count($orig_record)) {
145 notice( t('Could not access contact record.') . EOL);
146 goaway($a->get_baseurl(true) . '/contacts');
147 return; // NOTREACHED
150 call_hooks('contact_edit_post', $_POST);
152 $profile_id = intval($_POST['profile-assign']);
154 $r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
159 notice( t('Could not locate selected profile.') . EOL);
164 $hidden = intval($_POST['hidden']);
166 $notify = intval($_POST['notify']);
168 $fetch_further_information = intval($_POST['fetch_further_information']);
170 $ffi_keyword_blacklist = fix_mce_lf(escape_tags(trim($_POST['ffi_keyword_blacklist'])));
172 $priority = intval($_POST['poll']);
173 if($priority > 5 || $priority < 0)
176 $info = fix_mce_lf(escape_tags(trim($_POST['info'])));
178 $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s',
179 `hidden` = %d, `notify_new_posts` = %d, `fetch_further_information` = %d,
180 `ffi_keyword_blacklist` = '%s' WHERE `id` = %d AND `uid` = %d",
186 intval($fetch_further_information),
187 dbesc($ffi_keyword_blacklist),
192 info( t('Contact updated.') . EOL);
194 notice( t('Failed to update contact record.') . EOL);
196 $r = q("select * from contact where id = %d and uid = %d limit 1",
201 $a->data['contact'] = $r[0];
208 function _contact_update($contact_id) {
209 // pull feed and consume it, which should subscribe to the hub.
210 proc_run('php',"include/poller.php","$contact_id");
213 function _contact_update_profile($contact_id) {
214 $r = q("SELECT `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
218 $data = probe_url($r[0]["url"]);
220 // "Feed" is mostly a sign of communication problems
221 if (($data["network"] == NETWORK_FEED) AND ($data["network"] != $r[0]["network"]))
224 $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm",
225 "poco", "network", "alias", "pubkey");
228 foreach($updatefields AS $field)
229 if (isset($data[$field]) AND ($data[$field] != ""))
230 $update[$field] = $data[$field];
232 $update["nurl"] = normalise_link($data["url"]);
236 if (isset($data["priority"]) AND ($data["priority"] != 0))
237 $query = "`priority` = ".intval($data["priority"]);
239 foreach($update AS $key => $value) {
243 $query .= "`".$key."` = '".dbesc($value)."'";
249 $r = q("UPDATE `contact` SET $query WHERE `id` = %d AND `uid` = %d",
254 $photos = import_profile_photo($data['photo'], local_user(), $contact_id);
256 $r = q("UPDATE `contact` SET `photo` = '%s',
266 dbesc(datetime_convert()),
267 dbesc(datetime_convert()),
268 dbesc(datetime_convert()),
274 function _contact_block($contact_id, $orig_record) {
275 $blocked = (($orig_record['blocked']) ? 0 : 1);
276 $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d",
284 function _contact_ignore($contact_id, $orig_record) {
285 $readonly = (($orig_record['readonly']) ? 0 : 1);
286 $r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d",
293 function _contact_archive($contact_id, $orig_record) {
294 $archived = (($orig_record['archive']) ? 0 : 1);
295 $r = q("UPDATE `contact` SET `archive` = %d WHERE `id` = %d AND `uid` = %d",
301 q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact_id), intval(local_user()));
305 function _contact_drop($contact_id, $orig_record) {
306 require_once('include/Contact.php');
309 terminate_friendship($a->user,$a->contact,$orig_record);
310 contact_remove($orig_record['id']);
314 function contacts_content(&$a) {
318 nav_set_selected('contacts');
322 notice( t('Permission denied.') . EOL);
328 $contact_id = intval($a->argv[1]);
334 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d AND `self` = 0 LIMIT 1",
339 if(! count($orig_record)) {
340 notice( t('Could not access contact record.') . EOL);
341 goaway($a->get_baseurl(true) . '/contacts');
342 return; // NOTREACHED
345 if($cmd === 'update') {
346 _contact_update($contact_id);
347 goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
351 if($cmd === 'updateprofile') {
352 _contact_update_profile($contact_id);
353 goaway($a->get_baseurl(true) . '/crepair/' . $contact_id);
357 if($cmd === 'block') {
358 $r = _contact_block($contact_id, $orig_record[0]);
360 $blocked = (($orig_record[0]['blocked']) ? 0 : 1);
361 info((($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')).EOL);
364 goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
365 return; // NOTREACHED
368 if($cmd === 'ignore') {
369 $r = _contact_ignore($contact_id, $orig_record[0]);
371 $readonly = (($orig_record[0]['readonly']) ? 0 : 1);
372 info((($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')).EOL);
375 goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
376 return; // NOTREACHED
380 if($cmd === 'archive') {
381 $r = _contact_archive($contact_id, $orig_record[0]);
383 $archived = (($orig_record[0]['archive']) ? 0 : 1);
384 info((($archived) ? t('Contact has been archived') : t('Contact has been unarchived')).EOL);
387 goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
388 return; // NOTREACHED
391 if($cmd === 'drop') {
393 // Check if we should do HTML-based delete confirmation
394 if($_REQUEST['confirm']) {
395 // <form> can't take arguments in its "action" parameter
396 // so add any arguments as hidden inputs
397 $query = explode_querystring($a->query_string);
399 foreach($query['args'] as $arg) {
400 if(strpos($arg, 'confirm=') === false) {
401 $arg_parts = explode('=', $arg);
402 $inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
406 $a->page['aside'] = '';
407 return replace_macros(get_markup_template('confirm.tpl'), array(
409 '$message' => t('Do you really want to delete this contact?'),
410 '$extra_inputs' => $inputs,
411 '$confirm' => t('Yes'),
412 '$confirm_url' => $query['base'],
413 '$confirm_name' => 'confirmed',
414 '$cancel' => t('Cancel'),
417 // Now check how the user responded to the confirmation query
418 if($_REQUEST['canceled']) {
419 if(x($_SESSION,'return_url'))
420 goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
422 goaway($a->get_baseurl(true) . '/contacts');
425 _contact_drop($contact_id, $orig_record[0]);
426 info( t('Contact has been removed.') . EOL );
427 if(x($_SESSION,'return_url'))
428 goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
430 goaway($a->get_baseurl(true) . '/contacts');
431 return; // NOTREACHED
437 $_SESSION['return_url'] = $a->query_string;
439 if((x($a->data,'contact')) && (is_array($a->data['contact']))) {
441 $contact_id = $a->data['contact']['id'];
442 $contact = $a->data['contact'];
444 $editselect = 'none';
445 if( feature_enabled(local_user(),'richtext') )
446 $editselect = 'exact';
448 $a->page['htmlhead'] .= replace_macros(get_markup_template('contact_head.tpl'), array(
449 '$baseurl' => $a->get_baseurl(true),
450 '$editselect' => $editselect,
452 $a->page['end'] .= replace_macros(get_markup_template('contact_end.tpl'), array(
453 '$baseurl' => $a->get_baseurl(true),
454 '$editselect' => $editselect,
457 require_once('include/contact_selectors.php');
459 $tpl = get_markup_template("contact_edit.tpl");
461 switch($contact['rel']) {
462 case CONTACT_IS_FRIEND:
463 $dir_icon = 'images/lrarrow.gif';
464 $relation_text = t('You are mutual friends with %s');
466 case CONTACT_IS_FOLLOWER;
467 $dir_icon = 'images/larrow.gif';
468 $relation_text = t('You are sharing with %s');
471 case CONTACT_IS_SHARING;
472 $dir_icon = 'images/rarrow.gif';
473 $relation_text = t('%s is sharing with you');
479 if(!in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
482 $relation_text = sprintf($relation_text,$contact['name']);
484 if(($contact['network'] === NETWORK_DFRN) && ($contact['rel'])) {
485 $url = "redir/{$contact['id']}";
486 $sparkle = ' class="sparkle" ';
489 $url = $contact['url'];
493 $insecure = t('Private communications are not available for this contact.');
495 $last_update = (($contact['last-update'] == '0000-00-00 00:00:00')
497 : datetime_convert('UTC',date_default_timezone_get(),$contact['last-update'],'D, j M Y, g:i A'));
499 if($contact['last-update'] !== '0000-00-00 00:00:00')
500 $last_update .= ' ' . (($contact['last-update'] <= $contact['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29"));
502 $lblsuggest = (($contact['network'] === NETWORK_DFRN) ? t('Suggest friends') : '');
504 $poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2));
506 $nettype = sprintf( t('Network type: %s'),network_to_name($contact['network']));
508 $common = count_common_friends(local_user(),$contact['id']);
509 $common_text = (($common) ? sprintf( tt('%d contact in common','%d contacts in common', $common),$common) : '');
511 $polling = (($contact['network'] === NETWORK_MAIL | $contact['network'] === NETWORK_FEED) ? 'polling' : '');
513 $x = count_all_friends(local_user(), $contact['id']);
514 $all_friends = (($x) ? t('View all contacts') : '');
519 'label' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
520 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block',
522 'title' => t('Toggle Blocked status'),
525 'label' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
526 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore',
528 'title' => t('Toggle Ignored status'),
532 'label' => (($contact['archive']) ? t('Unarchive') : t('Archive') ),
533 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive',
535 'title' => t('Toggle Archive status'),
538 'label' => t('Repair'),
539 'url' => $a->get_baseurl(true) . '/crepair/' . $contact_id,
541 'title' => t('Advanced Contact Settings'),
544 $tab_tpl = get_markup_template('common_tabs.tpl');
545 $tab_str = replace_macros($tab_tpl, array('$tabs' => $tabs));
547 $lost_contact = (($contact['archive'] && $contact['term-date'] != '0000-00-00 00:00:00' && $contact['term-date'] < datetime_convert('','','now')) ? t('Communications lost with this contact!') : '');
549 if ($contact['network'] == NETWORK_FEED)
550 $fetch_further_information = array('fetch_further_information', t('Fetch further information for feeds'), $contact['fetch_further_information'], t('Fetch further information for feeds'),
551 array('0'=>t('Disabled'), '1'=>t('Fetch information'), '2'=>t('Fetch information and keywords')));
553 if (in_array($contact['network'], array(NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2)))
554 $poll_interval = contact_poll_interval($contact['priority'],(! $poll_enabled));
556 if ($contact['network'] == NETWORK_DFRN)
557 $profile_select = contact_profile_assign($contact['profile-id'],(($contact['network'] !== NETWORK_DFRN) ? true : false));
559 $o .= replace_macros($tpl, array(
560 '$header' => t('Contact Editor'),
561 '$tab_str' => $tab_str,
562 '$submit' => t('Submit'),
563 '$lbl_vis1' => t('Profile Visibility'),
564 '$lbl_vis2' => sprintf( t('Please choose the profile you would like to display to %s when viewing your profile securely.'), $contact['name']),
565 '$lbl_info1' => t('Contact Information / Notes'),
566 '$infedit' => t('Edit contact notes'),
567 '$common_text' => $common_text,
568 '$common_link' => $a->get_baseurl(true) . '/common/loc/' . local_user() . '/' . $contact['id'],
569 '$all_friends' => $all_friends,
570 '$relation_text' => $relation_text,
571 '$visit' => sprintf( t('Visit %s\'s profile [%s]'),$contact['name'],$contact['url']),
572 '$blockunblock' => t('Block/Unblock contact'),
573 '$ignorecont' => t('Ignore contact'),
574 '$lblcrepair' => t("Repair URL settings"),
575 '$lblrecent' => t('View conversations'),
576 '$lblsuggest' => $lblsuggest,
577 '$delete' => t('Delete contact'),
578 '$nettype' => $nettype,
579 '$poll_interval' => $poll_interval,
580 '$poll_enabled' => $poll_enabled,
581 '$lastupdtext' => t('Last update:'),
582 '$lost_contact' => $lost_contact,
583 '$updpub' => t('Update public posts'),
584 '$last_update' => $last_update,
585 '$udnow' => t('Update now'),
586 '$profile_select' => $profile_select,
587 '$contact_id' => $contact['id'],
588 '$block_text' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
589 '$ignore_text' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
590 '$insecure' => (($contact['network'] !== NETWORK_DFRN && $contact['network'] !== NETWORK_MAIL && $contact['network'] !== NETWORK_FACEBOOK && $contact['network'] !== NETWORK_DIASPORA) ? $insecure : ''),
591 '$info' => $contact['info'],
592 '$blocked' => (($contact['blocked']) ? t('Currently blocked') : ''),
593 '$ignored' => (($contact['readonly']) ? t('Currently ignored') : ''),
594 '$archived' => (($contact['archive']) ? t('Currently archived') : ''),
595 '$hidden' => array('hidden', t('Hide this contact from others'), ($contact['hidden'] == 1), t('Replies/likes to your public posts <strong>may</strong> still be visible')),
596 '$notify' => array('notify', t('Notification for new posts'), ($contact['notify_new_posts'] == 1), t('Send a notification of every new post of this contact')),
597 '$fetch_further_information' => $fetch_further_information,
598 '$ffi_keyword_blacklist' => $contact['ffi_keyword_blacklist'],
599 '$ffi_keyword_blacklist' => array('ffi_keyword_blacklist', t('Blacklisted keywords'), $contact['ffi_keyword_blacklist'], t('Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected')),
600 '$photo' => $contact['photo'],
601 '$name' => $contact['name'],
602 '$dir_icon' => $dir_icon,
603 '$alt_text' => $alt_text,
604 '$sparkle' => $sparkle,
609 $arr = array('contact' => $contact,'output' => $o);
611 call_hooks('contact_edit', $arr);
613 return $arr['output'];
622 if(($a->argc == 2) && ($a->argv[1] === 'all')) {
626 elseif(($a->argc == 2) && ($a->argv[1] === 'blocked')) {
627 $sql_extra = " AND `blocked` = 1 ";
630 elseif(($a->argc == 2) && ($a->argv[1] === 'hidden')) {
631 $sql_extra = " AND `hidden` = 1 ";
634 elseif(($a->argc == 2) && ($a->argv[1] === 'ignored')) {
635 $sql_extra = " AND `readonly` = 1 ";
638 elseif(($a->argc == 2) && ($a->argv[1] === 'archived')) {
639 $sql_extra = " AND `archive` = 1 ";
643 $sql_extra = " AND `blocked` = 0 ";
645 $search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : '');
646 $nets = ((x($_GET,'nets')) ? notags(trim($_GET['nets'])) : '');
650 'label' => t('Suggestions'),
651 'url' => $a->get_baseurl(true) . '/suggest',
653 'title' => t('Suggest potential friends'),
656 'label' => t('All Contacts'),
657 'url' => $a->get_baseurl(true) . '/contacts/all',
658 'sel' => ($all) ? 'active' : '',
659 'title' => t('Show all contacts'),
662 'label' => t('Unblocked'),
663 'url' => $a->get_baseurl(true) . '/contacts',
664 'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '',
665 'title' => t('Only show unblocked contacts'),
669 'label' => t('Blocked'),
670 'url' => $a->get_baseurl(true) . '/contacts/blocked',
671 'sel' => ($blocked) ? 'active' : '',
672 'title' => t('Only show blocked contacts'),
676 'label' => t('Ignored'),
677 'url' => $a->get_baseurl(true) . '/contacts/ignored',
678 'sel' => ($ignored) ? 'active' : '',
679 'title' => t('Only show ignored contacts'),
683 'label' => t('Archived'),
684 'url' => $a->get_baseurl(true) . '/contacts/archived',
685 'sel' => ($archived) ? 'active' : '',
686 'title' => t('Only show archived contacts'),
690 'label' => t('Hidden'),
691 'url' => $a->get_baseurl(true) . '/contacts/hidden',
692 'sel' => ($hidden) ? 'active' : '',
693 'title' => t('Only show hidden contacts'),
698 $tab_tpl = get_markup_template('common_tabs.tpl');
699 $t = replace_macros($tab_tpl, array('$tabs'=>$tabs));
705 $search_hdr = $search;
706 $search_txt = dbesc(protect_sprintf(preg_quote($search)));
709 $sql_extra .= (($searching) ? " AND (name REGEXP '$search_txt' OR url REGEXP '$search_txt' OR nick REGEXP '$search_txt') " : "");
712 $sql_extra .= sprintf(" AND network = '%s' ", dbesc($nets));
714 $sql_extra2 = ((($sort_type > 0) && ($sort_type <= CONTACT_IS_FRIEND)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : '');
717 $r = q("SELECT COUNT(*) AS `total` FROM `contact`
718 WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ",
719 intval($_SESSION['uid']));
721 $a->set_pager_total($r[0]['total']);
722 $total = $r[0]['total'];
726 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ORDER BY `name` ASC LIMIT %d , %d ",
727 intval($_SESSION['uid']),
728 intval($a->pager['start']),
729 intval($a->pager['itemspage'])
739 case CONTACT_IS_FRIEND:
740 $dir_icon = 'images/lrarrow.gif';
741 $alt_text = t('Mutual Friendship');
743 case CONTACT_IS_FOLLOWER;
744 $dir_icon = 'images/larrow.gif';
745 $alt_text = t('is a fan of yours');
747 case CONTACT_IS_SHARING;
748 $dir_icon = 'images/rarrow.gif';
749 $alt_text = t('you are a fan of');
754 if(($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) {
755 $url = "redir/{$rr['id']}";
756 $sparkle = ' class="sparkle" ';
765 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']),
766 'edit_hover' => t('Edit contact'),
767 'photo_menu' => contact_photo_menu($rr),
769 'alt_text' => $alt_text,
770 'dir_icon' => $dir_icon,
771 'thumb' => proxy_url($rr['thumb']),
772 'name' => $rr['name'],
773 'username' => $rr['name'],
774 'sparkle' => $sparkle,
775 'itemurl' => $rr['url'],
777 'network' => network_to_name($rr['network']),
785 $tpl = get_markup_template("contacts-template.tpl");
786 $o .= replace_macros($tpl, array(
787 '$baseurl' => $a->get_baseurl(),
788 '$header' => t('Contacts') . (($nets) ? ' - ' . network_to_name($nets) : ''),
791 '$search' => $search_hdr,
792 '$desc' => t('Search your contacts'),
793 '$finding' => (($searching) ? t('Finding: ') . "'" . $search . "'" : ""),
794 '$submit' => t('Find'),
796 '$contacts' => $contacts,
797 '$contact_drop_confirm' => t('Do you really want to delete this contact?'),
798 '$batch_actions' => array(
799 'contacts_batch_update' => t('Update'),
800 'contacts_batch_block' => t('Block')."/".t("Unblock"),
801 "contacts_batch_ignore" => t('Ignore')."/".t("Unignore"),
802 "contacts_batch_archive" => t('Archive')."/".t("Unarchive"),
803 "contacts_batch_drop" => t('Delete'),
805 '$paginate' => paginate($a),