X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotes.php;h=39649d81f64a80bd025ade8f8d05d044f15861a6;hb=1f08b2c1c092ad084595fc9a7e09f4670c9d2ac6;hp=99114add8c87a6e2971f65f0795b19d3b17eca3d;hpb=e3584daef9c7801bce8d504152c5ccbd3ab492b4;p=friendica.git diff --git a/mod/notes.php b/mod/notes.php index 99114add8c..39649d81f6 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -1,91 +1,93 @@ . + * */ + use Friendica\App; use Friendica\Content\Nav; -use Friendica\Core\L10n; -use Friendica\Database\DBM; -use Friendica\Model\Profile; +use Friendica\Content\Pager; +use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Item; +use Friendica\Model\Post; +use Friendica\Module\BaseProfile; function notes_init(App $a) { - if (! local_user()) { + if (! DI::userSession()->getLocalUserId()) { return; } - $profile = 0; - - $which = $a->user['nickname']; - Nav::setSelected('home'); - - //Profile::load($a, $which, $profile); } -function notes_content(App $a, $update = false) +function notes_content(App $a, bool $update = false) { - if (!local_user()) { - notice(L10n::t('Permission denied.') . EOL); + if (!DI::userSession()->getLocalUserId()) { + DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.')); return; } - require_once 'include/security.php'; - require_once 'include/conversation.php'; - - $o = Profile::getTabs($a, true); + $o = BaseProfile::getTabsHTML($a, 'notes', true, $a->getLoggedInUserNickname(), false); if (!$update) { - $o .= '

' . L10n::t('Personal Notes') . '

'; + $o .= '

' . DI::l10n()->t('Personal Notes') . '

'; $x = [ - 'is_owner' => true, - 'allow_location' => (($a->user['allow_location']) ? true : false), - 'default_location' => $a->user['default-location'], - 'nickname' => $a->user['nickname'], 'lockstate' => 'lock', - 'acl' => '', - 'bang' => '', - 'visitor' => 'block', - 'profile_uid' => local_user(), - 'button' => L10n::t('Save'), + 'acl' => \Friendica\Core\ACL::getSelfOnlyHTML(DI::userSession()->getLocalUserId(), DI::l10n()->t('Personal notes are visible only by yourself.')), + 'button' => DI::l10n()->t('Save'), 'acl_data' => '', ]; - $o .= status_editor($a, $x, $a->contact['id']); + $o .= DI::conversation()->statusEditor($x, $a->getContactId()); } - $condition = ["`uid` = ? AND `type` = 'note' AND `id` = `parent` AND NOT `wall` - AND `allow_cid` = ? AND `contact-id` = ?", - local_user(), '<' . $a->contact['id'] . '>', $a->contact['id']]; + $condition = ['uid' => DI::userSession()->getLocalUserId(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => Item::GRAVITY_PARENT, + 'contact-id'=> $a->getContactId()]; - $notes = dba::count('item', $condition); + if (DI::mode()->isMobile()) { + $itemsPerPage = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'itemspage_mobile_network', + DI::config()->get('system', 'itemspage_network_mobile')); + } else { + $itemsPerPage = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'itemspage_network', + DI::config()->get('system', 'itemspage_network')); + } - $a->set_pager_total($notes); - $a->set_pager_itemspage(40); + $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), $itemsPerPage); $params = ['order' => ['created' => true], - 'limit' => [$a->pager['start'], $a->pager['itemspage']]]; - $r = Item::selectForUser(local_user(), ['item_id'], $condition, $params); - - if (DBM::is_result($r)) { - $parents_arr = []; - - while ($rr = Item::fetch($r)) { - $parents_arr[] = $rr['item_id']; - } - dba::close($r); - - $condition = ['uid' => local_user(), 'parent' => $parents_arr]; - $result = Item::selectForUser(local_user(), [], $condition); - if (DBM::is_result($result)) { - $items = conv_sort(Item::inArray($result), 'commented'); - $o .= conversation($a, $items, 'notes', $update); - } + 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]]; + $r = Post::selectThreadForUser(DI::userSession()->getLocalUserId(), ['uri-id'], $condition, $params); + + $count = 0; + + if (DBA::isResult($r)) { + $notes = Post::toArray($r); + + $count = count($notes); + + $o .= DI::conversation()->create($notes, 'notes', $update); } - $o .= paginate($a); + $o .= $pager->renderMinimal($count); + return $o; }