X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fgroup.php;h=05a358ba70adb5ea86981ef9c582a162ec6da0bf;hb=7382be27668d835d564b2081594bb49d361666b7;hp=8a6e9309f1f87aea7e326e704e5264c39bc73ded;hpb=89ad41aca5acaee12032eaa2704436ca5ce5dad2;p=friendica.git diff --git a/mod/group.php b/mod/group.php index 8a6e9309f1..05a358ba70 100644 --- a/mod/group.php +++ b/mod/group.php @@ -7,6 +7,7 @@ use Friendica\App; use Friendica\Core\Config; +use Friendica\Core\L10n; use Friendica\Core\PConfig; use Friendica\Core\System; use Friendica\Database\DBM; @@ -15,14 +16,14 @@ use Friendica\Model\Group; function group_init(App $a) { if (local_user()) { - $a->page['aside'] = Group::sidebarWidget('contacts', 'group', 'extended', (($a->argc > 1) ? intval($a->argv[1]) : 0)); + $a->page['aside'] = Group::sidebarWidget('contacts', 'group', 'extended', (($a->argc > 1) ? $a->argv[1] : 'everyone')); } } function group_post(App $a) { if (! local_user()) { - notice(t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); return; } @@ -32,13 +33,13 @@ function group_post(App $a) { $name = notags(trim($_POST['groupname'])); $r = Group::create(local_user(), $name); if ($r) { - info(t('Group created.') . EOL); + info(L10n::t('Group created.') . EOL); $r = Group::getIdByName(local_user(), $name); if ($r) { goaway(System::baseUrl() . '/group/' . $r); } } else { - notice(t('Could not create group.') . EOL); + notice(L10n::t('Could not create group.') . EOL); } goaway(System::baseUrl() . '/group'); return; // NOTREACHED @@ -52,7 +53,7 @@ function group_post(App $a) { intval(local_user()) ); if (! DBM::is_result($r)) { - notice(t('Group not found.') . EOL); + notice(L10n::t('Group not found.') . EOL); goaway(System::baseUrl() . '/contacts'); return; // NOTREACHED } @@ -66,7 +67,7 @@ function group_post(App $a) { ); if ($r) { - info(t('Group name changed.') . EOL); + info(L10n::t('Group name changed.') . EOL); } } @@ -79,11 +80,15 @@ function group_content(App $a) { $change = false; if (! local_user()) { - notice(t('Permission denied') . EOL); + notice(L10n::t('Permission denied') . EOL); return; } // Switch to text mode interface if we have more than 'n' contacts or group members + + if ($a->argc == 1) { + goaway(System::baseUrl() . '/contacts'); + } $switchtotext = PConfig::get(local_user(), 'system', 'groupedit_image_limit'); if (is_null($switchtotext)) { @@ -92,21 +97,45 @@ function group_content(App $a) { $tpl = get_markup_template('group_edit.tpl'); - $context = array( - '$submit' => t('Save Group'), - ); + $context = [ + '$submit' => L10n::t('Save Group'), + '$submit_filter' => L10n::t('Filter'), + ]; if (($a->argc == 2) && ($a->argv[1] === 'new')) { - return replace_macros($tpl, $context + array( - '$title' => t('Create a group of contacts/friends.'), - '$gname' => array('groupname', t('Group Name: '), '', ''), + return replace_macros($tpl, $context + [ + '$title' => L10n::t('Create a group of contacts/friends.'), + '$gname' => ['groupname', L10n::t('Group Name: '), '', ''], '$gid' => 'new', '$form_security_token' => get_form_security_token("group_edit"), - )); + ]); + + + } + if (($a->argc == 2) && ($a->argv[1] === 'none')) { + require_once 'mod/contacts.php'; + $id = -1; + $nogroup = True; + $group = [ + 'id' => $id, + 'name' => L10n::t('Contacts not in any group'), + ]; + + $members = []; + $preselected = []; + $entry = []; + + $context = $context + [ + '$title' => $group['name'], + '$gname' => ['groupname', L10n::t('Group Name: '), $group['name'], ''], + '$gid' => $id, + '$editable' => 0, + ]; } + if (($a->argc == 3) && ($a->argv[1] === 'drop')) { check_form_security_token_redirectOnErr('/group', 'group_drop', 't'); @@ -123,9 +152,9 @@ function group_content(App $a) { } if ($result) { - info(t('Group removed.') . EOL); + info(L10n::t('Group removed.') . EOL); } else { - notice(t('Unable to remove group.') . EOL); + notice(L10n::t('Unable to remove group.') . EOL); } } goaway(System::baseUrl() . '/group'); @@ -145,7 +174,6 @@ function group_content(App $a) { } if (($a->argc > 1) && (intval($a->argv[1]))) { - require_once 'include/acl_selectors.php'; require_once 'mod/contacts.php'; $r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1", @@ -154,14 +182,14 @@ function group_content(App $a) { ); if (! DBM::is_result($r)) { - notice(t('Group not found.') . EOL); + notice(L10n::t('Group not found.') . EOL); goaway(System::baseUrl() . '/contacts'); } $group = $r[0]; $members = Contact::getByGroupId($group['id']); - $preselected = array(); - $entry = array(); + $preselected = []; + $entry = []; $id = 0; if (count($members)) { @@ -178,7 +206,7 @@ function group_content(App $a) { } $members = Contact::getByGroupId($group['id']); - $preselected = array(); + $preselected = []; if (count($members)) { foreach ($members as $member) { $preselected[] = $member['id']; @@ -187,21 +215,22 @@ function group_content(App $a) { } $drop_tpl = get_markup_template('group_drop.tpl'); - $drop_txt = replace_macros($drop_tpl, array( + $drop_txt = replace_macros($drop_tpl, [ '$id' => $group['id'], - '$delete' => t('Delete Group'), + '$delete' => L10n::t('Delete Group'), '$form_security_token' => get_form_security_token("group_drop"), - )); + ]); - $context = $context + array( - '$title' => t('Group Editor'), - '$gname' => array('groupname', t('Group Name: '), $group['name'], ''), + $context = $context + [ + '$title' => $group['name'], + '$gname' => ['groupname', L10n::t('Group Name: '), $group['name'], ''], '$gid' => $group['id'], '$drop' => $drop_txt, '$form_security_token' => get_form_security_token('group_edit'), - '$edit_name' => t('Edit Group Name') - ); + '$edit_name' => L10n::t('Edit Group Name'), + '$editable' => 1, + ]; } @@ -209,13 +238,13 @@ function group_content(App $a) { return; } - $groupeditor = array( - 'label_members' => t('Members'), - 'members' => array(), - 'label_contacts' => t('All Contacts'), - 'group_is_empty' => t('Group is empty'), - 'contacts' => array(), - ); + $groupeditor = [ + 'label_members' => L10n::t('Members'), + 'members' => [], + 'label_contacts' => L10n::t('All Contacts'), + 'group_is_empty' => L10n::t('Group is empty'), + 'contacts' => [], + ]; $sec_token = addslashes(get_form_security_token('group_member_change')); @@ -225,12 +254,12 @@ function group_content(App $a) { $entry = _contact_detail_for_template($member); $entry['label'] = 'members'; $entry['photo_menu'] = ''; - $entry['change_member'] = array( - 'title' => t("Remove Contact"), + $entry['change_member'] = [ + 'title' => L10n::t("Remove contact from group"), 'gid' => $group['id'], 'cid' => $member['id'], 'sec_token' => $sec_token - ); + ]; $groupeditor['members'][] = $entry; } else { @@ -238,9 +267,14 @@ function group_content(App $a) { } } - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `self` ORDER BY `name` ASC", - intval(local_user()) - ); + if ($nogroup) { + $r = Contact::getUngroupedList(local_user()); + } else { + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `self` ORDER BY `name` ASC", + intval(local_user()) + ); + $context['$desc'] = L10n::t('Click on a contact to add or remove.'); + } if (DBM::is_result($r)) { // Format the data of the contacts who aren't in the contact group @@ -248,13 +282,17 @@ function group_content(App $a) { if (! in_array($member['id'], $preselected)) { $entry = _contact_detail_for_template($member); $entry['label'] = 'contacts'; - $entry['photo_menu'] = ''; - $entry['change_member'] = array( - 'title' => t("Add Contact"), - 'gid' => $group['id'], - 'cid' => $member['id'], - 'sec_token' => $sec_token - ); + if (!$nogroup) + $entry['photo_menu'] = []; + + if (!$nogroup) { + $entry['change_member'] = [ + 'title' => L10n::t("Add contact to group"), + 'gid' => $group['id'], + 'cid' => $member['id'], + 'sec_token' => $sec_token + ]; + } $groupeditor['contacts'][] = $entry; } @@ -262,7 +300,6 @@ function group_content(App $a) { } $context['$groupeditor'] = $groupeditor; - $context['$desc'] = t('Click on a contact to add or remove.'); // If there are to many contacts we could provide an alternative view mode $total = count($groupeditor['members']) + count($groupeditor['contacts']);