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;
|
2018-01-10 04:42:04 +01:00
|
|
|
use Friendica\Content\ContactSelector;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
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
|
|
|
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
|
|
|
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()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::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
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$contacts[] = [
|
2018-01-22 15:16:25 +01:00
|
|
|
'img_hover' => L10n::t('Visit %s\'s profile [%s]', $contact_details['name'], $rr['url']),
|
|
|
|
'edit_hover' => L10n::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'],
|
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'],
|
|
|
|
'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
|
2017-11-29 21:59:06 +01:00
|
|
|
'url' => $rr['url'],
|
2018-01-10 04:42:04 +01:00
|
|
|
'network' => ContactSelector::networkToName($rr['network'], $rr['url']),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
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");
|
2018-01-01 21:51:02 +01:00
|
|
|
$o = replace_macros(
|
2017-11-15 16:53:16 +01:00
|
|
|
$tpl,
|
2018-01-15 14:05:12 +01:00
|
|
|
[
|
2018-01-22 15:16:25 +01:00
|
|
|
'$header' => L10n::t('Contacts who are not members of a group'),
|
2012-04-13 08:06:41 +02:00
|
|
|
'$contacts' => $contacts,
|
2018-01-15 14:05:12 +01:00
|
|
|
'$paginate' => paginate($a)]
|
2017-11-15 16:53:16 +01:00
|
|
|
);
|
2015-07-16 10:09:59 +02:00
|
|
|
|
2012-04-13 08:06:41 +02:00
|
|
|
return $o;
|
|
|
|
}
|