2012-04-13 08:06:41 +02:00
|
|
|
<?php
|
2017-11-15 16:53:16 +01:00
|
|
|
/**
|
|
|
|
* @file mod/nogroup.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-09 19:45:17 +01:00
|
|
|
use Friendica\Model\Group;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-11-15 16:53:16 +01:00
|
|
|
require_once 'include/contact_selectors.php';
|
2012-04-13 08:06:41 +02:00
|
|
|
|
2017-11-15 16:53:16 +01:00
|
|
|
function nogroup_init(App $a)
|
|
|
|
{
|
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
|
|
|
|
2017-11-15 16:53:16 +01:00
|
|
|
require_once 'include/contact_widgets.php';
|
2012-04-13 08:06:41 +02:00
|
|
|
|
2017-11-15 16:53:16 +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
|
|
|
|
2017-12-09 19:45:17 +01:00
|
|
|
$a->page['aside'] .= Group::sidebarWidget('contacts', 'group', 'extended');
|
2012-04-13 08:06:41 +02:00
|
|
|
}
|
|
|
|
|
2017-11-15 16:53:16 +01:00
|
|
|
function nogroup_content(App $a)
|
|
|
|
{
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2017-11-15 16:53:16 +01:00
|
|
|
notice(t('Permission denied.') . EOL);
|
2012-04-13 08:06:41 +02:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2017-11-19 23:03:39 +01:00
|
|
|
$r = Contact::getUngroupedList(local_user());
|
2017-11-08 04:57:46 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2012-04-13 08:06:41 +02:00
|
|
|
$a->set_pager_total($r[0]['total']);
|
|
|
|
}
|
2017-11-19 23:03:39 +01:00
|
|
|
$r = Contact::getUngroupedList(local_user(), $a->pager['start'], $a->pager['itemspage']);
|
2017-11-08 04:57:46 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2016-12-20 21:15:53 +01:00
|
|
|
foreach ($r as $rr) {
|
2017-11-19 23:03:39 +01:00
|
|
|
$contact_details = Contact::getDetailsByURL($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'),
|
2017-11-19 23:03:39 +01:00
|
|
|
'photo_menu' => Contact::photoMenu($rr),
|
2012-04-13 08:06:41 +02:00
|
|
|
'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']),
|
2017-11-29 21:59:06 +01:00
|
|
|
'url' => $rr['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");
|
2017-11-15 16:53:16 +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,
|
2017-11-15 16:53:16 +01:00
|
|
|
'$paginate' => paginate($a))
|
|
|
|
);
|
2015-07-16 10:09:59 +02:00
|
|
|
|
2012-04-13 08:06:41 +02:00
|
|
|
return $o;
|
|
|
|
}
|