2011-05-20 08:15:02 +00:00
|
|
|
<?php
|
2018-01-15 02:22:39 +00:00
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-15 02:22:39 +00:00
|
|
|
*/
|
2018-07-20 02:15:21 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-15 19:51:56 +00:00
|
|
|
use Friendica\Content\Nav;
|
2018-10-24 06:15:24 +00:00
|
|
|
use Friendica\Content\Pager;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 00:30:34 +00:00
|
|
|
use Friendica\DI;
|
2018-06-10 08:30:27 +00:00
|
|
|
use Friendica\Model\Item;
|
2021-01-19 07:23:01 +00:00
|
|
|
use Friendica\Model\Post;
|
2020-01-26 14:49:11 +00:00
|
|
|
use Friendica\Module\BaseProfile;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-01-22 14:16:25 +00:00
|
|
|
function notes_init(App $a)
|
|
|
|
{
|
2016-12-20 10:56:34 +00:00
|
|
|
if (! local_user()) {
|
2011-05-20 08:15:02 +00:00
|
|
|
return;
|
2016-12-20 10:56:34 +00:00
|
|
|
}
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2018-01-15 19:51:56 +00:00
|
|
|
Nav::setSelected('home');
|
2016-02-05 20:52:39 +00:00
|
|
|
}
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2016-02-07 14:11:34 +00:00
|
|
|
|
2018-01-22 14:16:25 +00:00
|
|
|
function notes_content(App $a, $update = false)
|
|
|
|
{
|
2018-06-10 19:29:34 +00:00
|
|
|
if (!local_user()) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2011-05-20 08:15:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-08-09 19:48:39 +00:00
|
|
|
$o = BaseProfile::getTabsHTML($a, 'notes', true, $a->getLoggedInUserNickname(), false);
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2018-01-22 14:16:25 +00:00
|
|
|
if (!$update) {
|
2020-01-18 19:52:34 +00:00
|
|
|
$o .= '<h3>' . DI::l10n()->t('Personal Notes') . '</h3>';
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$x = [
|
2015-06-26 13:13:52 +00:00
|
|
|
'lockstate' => 'lock',
|
2020-09-07 23:27:51 +00:00
|
|
|
'acl' => \Friendica\Core\ACL::getSelfOnlyHTML(local_user(), DI::l10n()->t('Personal notes are visible only by yourself.')),
|
2020-01-18 19:52:34 +00:00
|
|
|
'button' => DI::l10n()->t('Save'),
|
2013-01-26 19:52:21 +00:00
|
|
|
'acl_data' => '',
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2021-09-23 21:18:36 +00:00
|
|
|
$o .= DI::conversation()->statusEditor($x, $a->getContactId());
|
2011-09-11 22:09:57 +00:00
|
|
|
}
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2018-07-19 13:52:05 +00:00
|
|
|
$condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT,
|
2021-07-24 20:34:07 +00:00
|
|
|
'contact-id'=> $a->getContactId()];
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2020-02-16 18:04:26 +00:00
|
|
|
if (DI::mode()->isMobile()) {
|
|
|
|
$itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
|
|
|
|
DI::config()->get('system', 'itemspage_network_mobile'));
|
|
|
|
} else {
|
|
|
|
$itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
|
|
|
|
DI::config()->get('system', 'itemspage_network'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString(), $itemsPerPage);
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2018-06-10 08:58:03 +00:00
|
|
|
$params = ['order' => ['created' => true],
|
2018-10-24 06:15:24 +00:00
|
|
|
'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
|
2021-01-27 10:01:42 +00:00
|
|
|
$r = Post::selectThreadForUser(local_user(), ['uri-id'], $condition, $params);
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2018-07-22 22:05:10 +00:00
|
|
|
$count = 0;
|
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($r)) {
|
2021-01-19 07:23:01 +00:00
|
|
|
$notes = Post::toArray($r);
|
2018-09-09 22:33:14 +00:00
|
|
|
|
|
|
|
$count = count($notes);
|
|
|
|
|
2021-09-23 21:18:36 +00:00
|
|
|
$o .= DI::conversation()->create($notes, 'notes', $update);
|
2012-08-03 19:41:26 +00:00
|
|
|
}
|
2011-05-20 08:15:02 +00:00
|
|
|
|
2018-10-24 06:15:24 +00:00
|
|
|
$o .= $pager->renderMinimal($count);
|
2018-07-22 22:05:10 +00:00
|
|
|
|
2011-05-20 08:15:02 +00:00
|
|
|
return $o;
|
|
|
|
}
|