2011-05-20 10:15:02 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 16:18:46 +01: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 03:22:39 +01:00
|
|
|
*/
|
2018-07-20 04:15:21 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Content\Pager;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 01:30:34 +01:00
|
|
|
use Friendica\DI;
|
2018-06-10 10:30:27 +02:00
|
|
|
use Friendica\Model\Item;
|
2021-01-19 08:23:01 +01:00
|
|
|
use Friendica\Model\Post;
|
2020-01-26 15:49:11 +01:00
|
|
|
use Friendica\Module\BaseProfile;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
function notes_init(App $a)
|
|
|
|
{
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2011-05-20 10:15:02 +02:00
|
|
|
return;
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('home');
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
function notes_content(App $a, $update = false)
|
|
|
|
{
|
2018-06-10 21:29:34 +02:00
|
|
|
if (!local_user()) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2011-05-20 10:15:02 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-08-09 21:48:39 +02:00
|
|
|
$o = BaseProfile::getTabsHTML($a, 'notes', true, $a->getLoggedInUserNickname(), false);
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
if (!$update) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= '<h3>' . DI::l10n()->t('Personal Notes') . '</h3>';
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$x = [
|
2015-06-26 15:13:52 +02:00
|
|
|
'lockstate' => 'lock',
|
2020-09-08 01:27:51 +02:00
|
|
|
'acl' => \Friendica\Core\ACL::getSelfOnlyHTML(local_user(), DI::l10n()->t('Personal notes are visible only by yourself.')),
|
2020-01-18 20:52:34 +01:00
|
|
|
'button' => DI::l10n()->t('Save'),
|
2013-01-26 20:52:21 +01:00
|
|
|
'acl_data' => '',
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2021-09-23 23:18:36 +02:00
|
|
|
$o .= DI::conversation()->statusEditor($x, $a->getContactId());
|
2011-09-12 00:09:57 +02:00
|
|
|
}
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2018-07-19 15:52:05 +02:00
|
|
|
$condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT,
|
2021-07-24 22:34:07 +02:00
|
|
|
'contact-id'=> $a->getContactId()];
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2020-02-16 19:04:26 +01: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 10:15:02 +02:00
|
|
|
|
2018-06-10 10:58:03 +02:00
|
|
|
$params = ['order' => ['created' => true],
|
2018-10-24 08:15:24 +02:00
|
|
|
'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
|
2021-01-27 11:01:42 +01:00
|
|
|
$r = Post::selectThreadForUser(local_user(), ['uri-id'], $condition, $params);
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2018-07-23 00:05:10 +02:00
|
|
|
$count = 0;
|
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2021-01-19 08:23:01 +01:00
|
|
|
$notes = Post::toArray($r);
|
2018-09-10 00:33:14 +02:00
|
|
|
|
|
|
|
$count = count($notes);
|
|
|
|
|
2021-09-23 23:18:36 +02:00
|
|
|
$o .= DI::conversation()->create($notes, 'notes', $update);
|
2012-08-03 21:41:26 +02:00
|
|
|
}
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2018-10-24 08:15:24 +02:00
|
|
|
$o .= $pager->renderMinimal($count);
|
2018-07-23 00:05:10 +02:00
|
|
|
|
2011-05-20 10:15:02 +02:00
|
|
|
return $o;
|
|
|
|
}
|