2012-04-13 08:06:41 +02:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
|
|
|
|
2012-04-13 08:06:41 +02:00
|
|
|
require_once('include/Contact.php');
|
|
|
|
require_once('include/socgraph.php');
|
|
|
|
require_once('include/contact_selectors.php');
|
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function nogroup_init(App $a) {
|
2012-04-13 08:06:41 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2012-04-13 08:06:41 +02:00
|
|
|
return;
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2012-04-13 08:06:41 +02:00
|
|
|
|
|
|
|
require_once('include/group.php');
|
|
|
|
require_once('include/contact_widgets.php');
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! x($a->page,'aside')) {
|
2012-04-13 08:06:41 +02:00
|
|
|
$a->page['aside'] = '';
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2012-04-13 08:06:41 +02:00
|
|
|
|
2015-11-28 20:09:28 +01:00
|
|
|
$a->page['aside'] .= group_side('contacts','group','extended',0,$contact_id);
|
2012-04-13 08:06:41 +02:00
|
|
|
}
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function nogroup_content(App $a) {
|
2012-04-13 08:06:41 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2012-04-13 08:06:41 +02:00
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once('include/Contact.php');
|
|
|
|
$r = contacts_not_grouped(local_user());
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2012-04-13 08:06:41 +02:00
|
|
|
$a->set_pager_total($r[0]['total']);
|
|
|
|
}
|
|
|
|
$r = contacts_not_grouped(local_user(),$a->pager['start'],$a->pager['itemspage']);
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2016-12-20 21:15:53 +01:00
|
|
|
foreach ($r as $rr) {
|
2012-04-13 08:06:41 +02:00
|
|
|
|
2016-06-05 13:57:11 +02:00
|
|
|
$contact_details = get_contact_details_by_url($rr['url'], local_user(), $rr);
|
2012-04-13 08:06:41 +02:00
|
|
|
|
|
|
|
$contacts[] = array(
|
2016-06-05 13:57:11 +02:00
|
|
|
'img_hover' => sprintf(t('Visit %s\'s profile [%s]'), $contact_details['name'], $rr['url']),
|
2012-04-13 08:06:41 +02:00
|
|
|
'edit_hover' => t('Edit contact'),
|
|
|
|
'photo_menu' => contact_photo_menu($rr),
|
|
|
|
'id' => $rr['id'],
|
|
|
|
'alt_text' => $alt_text,
|
|
|
|
'dir_icon' => $dir_icon,
|
2016-06-05 13:57:11 +02:00
|
|
|
'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
|
|
|
|
'name' => $contact_details['name'],
|
|
|
|
'username' => $contact_details['name'],
|
2015-11-06 00:47:54 +01:00
|
|
|
'details' => $contact_details['location'],
|
|
|
|
'tags' => $contact_details['keywords'],
|
|
|
|
'about' => $contact_details['about'],
|
2012-04-13 08:06:41 +02:00
|
|
|
'sparkle' => $sparkle,
|
2015-11-06 00:47:54 +01:00
|
|
|
'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
|
2012-04-13 08:06:41 +02:00
|
|
|
'url' => $url,
|
2015-07-16 10:09:59 +02:00
|
|
|
'network' => network_to_name($rr['network'], $url),
|
2012-04-13 08:06:41 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2012-12-22 20:57:29 +01:00
|
|
|
|
2012-04-13 08:06:41 +02:00
|
|
|
$tpl = get_markup_template("nogroup-template.tpl");
|
2012-12-25 19:48:02 +01:00
|
|
|
$o .= replace_macros($tpl, array(
|
2012-04-13 08:06:41 +02:00
|
|
|
'$header' => t('Contacts who are not members of a group'),
|
|
|
|
'$contacts' => $contacts,
|
|
|
|
'$paginate' => paginate($a),
|
2015-07-16 10:09:59 +02:00
|
|
|
));
|
|
|
|
|
2012-04-13 08:06:41 +02:00
|
|
|
return $o;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2012-04-13 08:06:41 +02:00
|
|
|
}
|