7 use Friendica\Content\Nav;
8 use Friendica\Content\Pager;
9 use Friendica\Core\L10n;
10 use Friendica\Database\DBA;
11 use Friendica\Model\Item;
12 use Friendica\Model\Profile;
14 function notes_init(App $a)
20 Nav::setSelected('home');
24 function notes_content(App $a, $update = false)
27 notice(L10n::t('Permission denied.') . EOL);
31 $o = Profile::getTabs($a, true);
34 $o .= '<h3>' . L10n::t('Personal Notes') . '</h3>';
38 'allow_location' => (($a->user['allow_location']) ? true : false),
39 'default_location' => $a->user['default-location'],
40 'nickname' => $a->user['nickname'],
41 'lockstate' => 'lock',
45 'profile_uid' => local_user(),
46 'button' => L10n::t('Save'),
50 $o .= status_editor($a, $x, $a->contact['id']);
53 $condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT,
54 'contact-id'=> $a->contact['id']];
56 $pager = new Pager($a->query_string, 40);
58 $params = ['order' => ['created' => true],
59 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
60 $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
64 if (DBA::isResult($r)) {
65 $notes = Item::inArray($r);
67 $count = count($notes);
69 $o .= conversation($a, $notes, $pager, 'notes', $update);
72 $o .= $pager->renderMinimal($count);