2010-07-11 09:06:30 -04:00
|
|
|
<?php
|
2017-04-21 10:04:29 -04:00
|
|
|
/**
|
|
|
|
* @file mod/group.php
|
|
|
|
* @brief The group module (create and rename contact groups, add and
|
|
|
|
* remove contacts to the contact groups
|
|
|
|
*/
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-10-17 15:30:41 -04:00
|
|
|
use Friendica\BaseModule;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 13:33:59 -05:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Core\PConfig;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-10-13 05:23:52 -04:00
|
|
|
use Friendica\Model;
|
2018-10-14 14:03:22 -04:00
|
|
|
use Friendica\Module;
|
2018-11-08 10:14:37 -05:00
|
|
|
use Friendica\Util\Strings;
|
2010-07-11 09:06:30 -04:00
|
|
|
|
2017-01-09 07:12:54 -05:00
|
|
|
function group_init(App $a) {
|
2017-04-21 10:04:29 -04:00
|
|
|
if (local_user()) {
|
2018-12-07 00:50:49 -05:00
|
|
|
$a->page['aside'] = Model\Group::sidebarWidget('contact', 'group', 'extended', (($a->argc > 1) ? $a->argv[1] : 'everyone'));
|
2010-09-08 23:14:17 -04:00
|
|
|
}
|
2010-07-11 09:06:30 -04:00
|
|
|
}
|
|
|
|
|
2017-01-09 07:12:54 -05:00
|
|
|
function group_post(App $a) {
|
2010-07-11 09:06:30 -04:00
|
|
|
|
2018-08-02 01:21:01 -04:00
|
|
|
if (!local_user()) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2010-07-11 09:06:30 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-21 10:04:29 -04:00
|
|
|
if (($a->argc == 2) && ($a->argv[1] === 'new')) {
|
2018-10-17 15:30:41 -04:00
|
|
|
BaseModule::checkFormSecurityTokenRedirectOnError('/group/new', 'group_edit');
|
2014-03-11 18:52:32 -04:00
|
|
|
|
2018-11-09 13:29:42 -05:00
|
|
|
$name = Strings::escapeTags(trim($_POST['groupname']));
|
2018-10-15 18:35:36 -04:00
|
|
|
$r = Model\Group::create(local_user(), $name);
|
2016-12-20 15:15:53 -05:00
|
|
|
if ($r) {
|
2018-01-22 16:59:31 -05:00
|
|
|
info(L10n::t('Group created.') . EOL);
|
2018-10-15 18:35:36 -04:00
|
|
|
$r = Model\Group::getIdByName(local_user(), $name);
|
2016-12-20 05:04:29 -05:00
|
|
|
if ($r) {
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect('group/' . $r);
|
2016-12-20 05:04:29 -05:00
|
|
|
}
|
2016-12-19 08:26:13 -05:00
|
|
|
} else {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Could not create group.') . EOL);
|
2016-12-20 05:04:29 -05:00
|
|
|
}
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect('group');
|
2010-07-11 09:06:30 -04:00
|
|
|
return; // NOTREACHED
|
|
|
|
}
|
2016-12-20 05:04:29 -05:00
|
|
|
|
2018-08-02 01:21:01 -04:00
|
|
|
if (($a->argc == 2) && intval($a->argv[1])) {
|
2018-10-17 15:30:41 -04:00
|
|
|
BaseModule::checkFormSecurityTokenRedirectOnError('/group', 'group_edit');
|
2014-03-11 18:52:32 -04:00
|
|
|
|
2010-07-13 07:05:23 -04:00
|
|
|
$r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($a->argv[1]),
|
2010-10-18 17:34:59 -04:00
|
|
|
intval(local_user())
|
2010-07-13 07:05:23 -04:00
|
|
|
);
|
2018-08-02 01:21:01 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Group not found.') . EOL);
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect('contact');
|
2010-09-08 23:14:17 -04:00
|
|
|
return; // NOTREACHED
|
2010-07-13 07:05:23 -04:00
|
|
|
}
|
|
|
|
$group = $r[0];
|
2018-11-09 13:29:42 -05:00
|
|
|
$groupname = Strings::escapeTags(trim($_POST['groupname']));
|
2018-08-02 01:21:01 -04:00
|
|
|
if (strlen($groupname) && ($groupname != $group['name'])) {
|
2014-03-11 18:52:32 -04:00
|
|
|
$r = q("UPDATE `group` SET `name` = '%s' WHERE `uid` = %d AND `id` = %d",
|
2018-07-21 09:10:13 -04:00
|
|
|
DBA::escape($groupname),
|
2010-10-18 17:34:59 -04:00
|
|
|
intval(local_user()),
|
2010-07-13 07:05:23 -04:00
|
|
|
intval($group['id'])
|
|
|
|
);
|
2016-12-20 05:04:29 -05:00
|
|
|
|
|
|
|
if ($r) {
|
2018-01-22 16:59:31 -05:00
|
|
|
info(L10n::t('Group name changed.') . EOL);
|
2016-12-20 05:04:29 -05:00
|
|
|
}
|
2010-07-13 07:05:23 -04:00
|
|
|
}
|
2011-04-12 08:37:26 -04:00
|
|
|
|
2018-10-15 18:35:36 -04:00
|
|
|
$a->page['aside'] = Model\Group::sidebarWidget();
|
2010-07-13 07:05:23 -04:00
|
|
|
}
|
2015-11-08 10:41:00 -05:00
|
|
|
return;
|
2010-07-11 09:06:30 -04:00
|
|
|
}
|
|
|
|
|
2017-01-09 07:12:54 -05:00
|
|
|
function group_content(App $a) {
|
2012-03-18 11:44:33 -04:00
|
|
|
$change = false;
|
2015-11-08 10:41:00 -05:00
|
|
|
|
2018-08-02 01:21:01 -04:00
|
|
|
if (!local_user()) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Permission denied') . EOL);
|
2010-07-11 09:06:30 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-26 04:24:45 -04:00
|
|
|
// With no group number provided we jump to the unassigned contacts as a starting point
|
2018-07-08 15:20:18 -04:00
|
|
|
if ($a->argc == 1) {
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect('group/none');
|
2018-07-08 15:20:18 -04:00
|
|
|
}
|
2011-06-29 23:42:16 -04:00
|
|
|
|
2018-08-26 04:24:45 -04:00
|
|
|
// Switch to text mode interface if we have more than 'n' contacts or group members
|
2017-11-06 21:22:52 -05:00
|
|
|
$switchtotext = PConfig::get(local_user(), 'system', 'groupedit_image_limit');
|
2017-11-07 17:15:59 -05:00
|
|
|
if (is_null($switchtotext)) {
|
|
|
|
$switchtotext = Config::get('system', 'groupedit_image_limit', 400);
|
2017-04-21 10:04:29 -04:00
|
|
|
}
|
2011-06-29 23:42:16 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('group_edit.tpl');
|
2012-12-22 14:57:29 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$context = [
|
2018-07-09 18:36:50 -04:00
|
|
|
'$submit' => L10n::t('Save Group'),
|
|
|
|
'$submit_filter' => L10n::t('Filter'),
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2012-02-23 10:17:36 -05:00
|
|
|
|
2016-12-19 08:26:13 -05:00
|
|
|
if (($a->argc == 2) && ($a->argv[1] === 'new')) {
|
2018-10-31 10:35:50 -04:00
|
|
|
return Renderer::replaceMacros($tpl, $context + [
|
2018-01-22 07:29:50 -05:00
|
|
|
'$title' => L10n::t('Create a group of contacts/friends.'),
|
|
|
|
'$gname' => ['groupname', L10n::t('Group Name: '), '', ''],
|
2012-03-02 09:40:17 -05:00
|
|
|
'$gid' => 'new',
|
2018-10-17 15:30:41 -04:00
|
|
|
'$form_security_token' => BaseModule::getFormSecurityToken("group_edit"),
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2017-03-21 12:02:59 -04:00
|
|
|
|
|
|
|
|
2010-07-13 02:08:07 -04:00
|
|
|
}
|
2010-08-11 07:14:47 -04:00
|
|
|
|
2018-08-02 01:21:01 -04:00
|
|
|
$nogroup = false;
|
|
|
|
|
2018-07-09 18:36:50 -04:00
|
|
|
if (($a->argc == 2) && ($a->argv[1] === 'none')) {
|
|
|
|
$id = -1;
|
2018-08-02 01:21:01 -04:00
|
|
|
$nogroup = true;
|
2018-07-09 18:36:50 -04:00
|
|
|
$group = [
|
|
|
|
'id' => $id,
|
|
|
|
'name' => L10n::t('Contacts not in any group'),
|
|
|
|
];
|
|
|
|
|
|
|
|
$members = [];
|
|
|
|
$preselected = [];
|
|
|
|
|
|
|
|
$context = $context + [
|
|
|
|
'$title' => $group['name'],
|
|
|
|
'$gname' => ['groupname', L10n::t('Group Name: '), $group['name'], ''],
|
|
|
|
'$gid' => $id,
|
|
|
|
'$editable' => 0,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-20 05:21:32 -05:00
|
|
|
if (($a->argc == 3) && ($a->argv[1] === 'drop')) {
|
2018-10-17 15:30:41 -04:00
|
|
|
BaseModule::checkFormSecurityTokenRedirectOnError('/group', 'group_drop', 't');
|
2014-03-11 18:52:32 -04:00
|
|
|
|
2016-12-20 05:21:32 -05:00
|
|
|
if (intval($a->argv[2])) {
|
2010-08-11 04:48:43 -04:00
|
|
|
$r = q("SELECT `name` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
2010-08-11 07:14:47 -04:00
|
|
|
intval($a->argv[2]),
|
2010-10-18 17:34:59 -04:00
|
|
|
intval(local_user())
|
2010-08-11 04:48:43 -04:00
|
|
|
);
|
2016-12-20 05:21:32 -05:00
|
|
|
|
|
|
|
$result = null;
|
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2018-10-15 18:35:36 -04:00
|
|
|
$result = Model\Group::removeByName(local_user(), $r[0]['name']);
|
2016-12-20 05:21:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($result) {
|
2018-01-22 16:59:31 -05:00
|
|
|
info(L10n::t('Group removed.') . EOL);
|
2016-12-20 05:21:32 -05:00
|
|
|
} else {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Unable to remove group.') . EOL);
|
2016-12-20 05:21:32 -05:00
|
|
|
}
|
2010-08-11 04:48:43 -04:00
|
|
|
}
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect('group');
|
2011-05-15 19:36:49 -04:00
|
|
|
// NOTREACHED
|
2010-08-11 04:48:43 -04:00
|
|
|
}
|
2010-07-13 05:26:28 -04:00
|
|
|
|
2016-12-20 05:21:32 -05:00
|
|
|
if (($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
|
2018-10-17 15:30:41 -04:00
|
|
|
BaseModule::checkFormSecurityTokenForbiddenOnError('group_member_change', 't');
|
2014-03-11 18:52:32 -04:00
|
|
|
|
2011-04-12 08:37:26 -04:00
|
|
|
$r = q("SELECT `id` FROM `contact` WHERE `id` = %d AND `uid` = %d and `self` = 0 and `blocked` = 0 AND `pending` = 0 LIMIT 1",
|
|
|
|
intval($a->argv[2]),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2011-04-12 08:37:26 -04:00
|
|
|
$change = intval($a->argv[2]);
|
2017-04-21 10:04:29 -04:00
|
|
|
}
|
2011-04-12 08:37:26 -04:00
|
|
|
}
|
|
|
|
|
2018-08-02 01:21:01 -04:00
|
|
|
if (($a->argc > 1) && intval($a->argv[1])) {
|
2011-05-15 19:36:49 -04:00
|
|
|
$r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1",
|
2010-07-13 02:08:07 -04:00
|
|
|
intval($a->argv[1]),
|
2010-10-18 17:34:59 -04:00
|
|
|
intval(local_user())
|
2010-07-13 02:08:07 -04:00
|
|
|
);
|
2017-04-21 10:04:29 -04:00
|
|
|
|
2018-08-02 01:21:01 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Group not found.') . EOL);
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect('contact');
|
2010-07-13 02:08:07 -04:00
|
|
|
}
|
2017-04-21 10:04:29 -04:00
|
|
|
|
2010-07-13 05:26:28 -04:00
|
|
|
$group = $r[0];
|
2018-10-13 05:23:52 -04:00
|
|
|
$members = Model\Contact::getByGroupId($group['id']);
|
2018-01-15 08:05:12 -05:00
|
|
|
$preselected = [];
|
2017-04-21 10:04:29 -04:00
|
|
|
|
|
|
|
if (count($members)) {
|
|
|
|
foreach ($members as $member) {
|
2011-04-12 01:47:16 -04:00
|
|
|
$preselected[] = $member['id'];
|
2017-04-21 10:04:29 -04:00
|
|
|
}
|
2010-07-13 02:08:07 -04:00
|
|
|
}
|
2010-07-13 05:26:28 -04:00
|
|
|
|
2017-04-21 10:04:29 -04:00
|
|
|
if ($change) {
|
|
|
|
if (in_array($change, $preselected)) {
|
2018-10-15 18:35:36 -04:00
|
|
|
Model\Group::removeMember($group['id'], $change);
|
2017-04-21 10:04:29 -04:00
|
|
|
} else {
|
2018-10-15 18:35:36 -04:00
|
|
|
Model\Group::addMember($group['id'], $change);
|
2011-04-12 08:37:26 -04:00
|
|
|
}
|
|
|
|
|
2018-10-13 05:23:52 -04:00
|
|
|
$members = Model\Contact::getByGroupId($group['id']);
|
2018-01-15 08:05:12 -05:00
|
|
|
$preselected = [];
|
2017-04-21 10:04:29 -04:00
|
|
|
if (count($members)) {
|
|
|
|
foreach ($members as $member) {
|
2011-04-12 08:37:26 -04:00
|
|
|
$preselected[] = $member['id'];
|
2017-04-21 10:04:29 -04:00
|
|
|
}
|
2011-04-12 08:37:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$drop_tpl = Renderer::getMarkupTemplate('group_drop.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
$drop_txt = Renderer::replaceMacros($drop_tpl, [
|
2010-08-11 04:48:43 -04:00
|
|
|
'$id' => $group['id'],
|
2018-01-22 07:29:50 -05:00
|
|
|
'$delete' => L10n::t('Delete Group'),
|
2018-10-17 15:30:41 -04:00
|
|
|
'$form_security_token' => BaseModule::getFormSecurityToken("group_drop"),
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2010-08-11 04:48:43 -04:00
|
|
|
|
2015-11-08 10:41:00 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$context = $context + [
|
2018-07-09 18:36:50 -04:00
|
|
|
'$title' => $group['name'],
|
2018-01-22 07:29:50 -05:00
|
|
|
'$gname' => ['groupname', L10n::t('Group Name: '), $group['name'], ''],
|
2010-07-13 05:26:28 -04:00
|
|
|
'$gid' => $group['id'],
|
2010-08-11 04:48:43 -04:00
|
|
|
'$drop' => $drop_txt,
|
2018-10-17 15:30:41 -04:00
|
|
|
'$form_security_token' => BaseModule::getFormSecurityToken('group_edit'),
|
2018-07-09 18:36:50 -04:00
|
|
|
'$edit_name' => L10n::t('Edit Group Name'),
|
|
|
|
'$editable' => 1,
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2010-07-13 05:26:28 -04:00
|
|
|
|
2010-07-13 02:08:07 -04:00
|
|
|
}
|
2011-04-12 01:47:16 -04:00
|
|
|
|
2018-08-02 01:21:01 -04:00
|
|
|
if (!isset($group)) {
|
2011-05-15 19:36:49 -04:00
|
|
|
return;
|
2017-04-21 10:04:29 -04:00
|
|
|
}
|
2011-05-15 19:36:49 -04:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$groupeditor = [
|
2018-01-22 07:29:50 -05:00
|
|
|
'label_members' => L10n::t('Members'),
|
2018-01-15 08:05:12 -05:00
|
|
|
'members' => [],
|
2018-01-22 07:29:50 -05:00
|
|
|
'label_contacts' => L10n::t('All Contacts'),
|
|
|
|
'group_is_empty' => L10n::t('Group is empty'),
|
2018-01-15 08:05:12 -05:00
|
|
|
'contacts' => [],
|
|
|
|
];
|
2015-11-08 10:41:00 -05:00
|
|
|
|
2018-10-17 15:30:41 -04:00
|
|
|
$sec_token = addslashes(BaseModule::getFormSecurityToken('group_member_change'));
|
2017-04-21 10:04:29 -04:00
|
|
|
|
|
|
|
// Format the data of the group members
|
|
|
|
foreach ($members as $member) {
|
|
|
|
if ($member['url']) {
|
2018-10-14 14:03:22 -04:00
|
|
|
$entry = Module\Contact::getContactTemplateVars($member);
|
2017-04-21 10:04:29 -04:00
|
|
|
$entry['label'] = 'members';
|
|
|
|
$entry['photo_menu'] = '';
|
2018-01-15 08:05:12 -05:00
|
|
|
$entry['change_member'] = [
|
2018-05-16 20:23:20 -04:00
|
|
|
'title' => L10n::t("Remove contact from group"),
|
2017-04-21 10:04:29 -04:00
|
|
|
'gid' => $group['id'],
|
|
|
|
'cid' => $member['id'],
|
|
|
|
'sec_token' => $sec_token
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-04-21 10:04:29 -04:00
|
|
|
|
|
|
|
$groupeditor['members'][] = $entry;
|
|
|
|
} else {
|
2018-10-15 18:35:36 -04:00
|
|
|
Model\Group::removeMember($group['id'], $member['id']);
|
2017-01-26 09:23:30 -05:00
|
|
|
}
|
2011-04-12 01:47:16 -04:00
|
|
|
}
|
2011-04-12 04:31:55 -04:00
|
|
|
|
2018-07-09 18:36:50 -04:00
|
|
|
if ($nogroup) {
|
2018-10-13 05:23:52 -04:00
|
|
|
$r = Model\Contact::getUngroupedList(local_user());
|
2018-07-09 18:36:50 -04:00
|
|
|
} 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.');
|
|
|
|
}
|
2011-04-12 04:31:55 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2017-04-21 10:04:29 -04:00
|
|
|
// Format the data of the contacts who aren't in the contact group
|
|
|
|
foreach ($r as $member) {
|
2018-08-02 01:21:01 -04:00
|
|
|
if (!in_array($member['id'], $preselected)) {
|
2018-10-14 14:03:22 -04:00
|
|
|
$entry = Module\Contact::getContactTemplateVars($member);
|
2017-04-21 10:04:29 -04:00
|
|
|
$entry['label'] = 'contacts';
|
2018-07-09 18:36:50 -04:00
|
|
|
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
|
|
|
|
];
|
|
|
|
}
|
2017-04-21 10:04:29 -04:00
|
|
|
|
|
|
|
$groupeditor['contacts'][] = $entry;
|
2011-04-12 04:31:55 -04:00
|
|
|
}
|
|
|
|
}
|
2012-02-23 10:17:36 -05:00
|
|
|
}
|
2011-04-12 04:31:55 -04:00
|
|
|
|
2013-01-12 07:58:54 -05:00
|
|
|
$context['$groupeditor'] = $groupeditor;
|
2011-04-12 01:47:16 -04:00
|
|
|
|
2017-04-21 10:04:29 -04:00
|
|
|
// If there are to many contacts we could provide an alternative view mode
|
|
|
|
$total = count($groupeditor['members']) + count($groupeditor['contacts']);
|
|
|
|
$context['$shortmode'] = (($switchtotext && ($total > $switchtotext)) ? true : false);
|
|
|
|
|
|
|
|
if ($change) {
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('groupeditor.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
echo Renderer::replaceMacros($tpl, $context);
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2011-04-12 08:37:26 -04:00
|
|
|
}
|
2015-11-08 10:41:00 -05:00
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
return Renderer::replaceMacros($tpl, $context);
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2011-04-12 08:37:26 -04:00
|
|
|
}
|